返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.    srand(time(NULL));
  8.    int n[4];
  9.    for(int i=1;i<=20;i++){
  10.    for(int j=0;j<=3;j++){
  11.    n[j]=rand()%10;
  12.            for(int k=0;k<j;k++){
  13.            if(n[k]==n[j]){
  14.            j--;
  15.            }
  16.            }
  17.            }
  18.    for(int i=0;i<=3;i++){
  19.    cout<<n[i]<<"\t";
  20.    }
  21.    _sleep(500);
  22.    cout<<endl;}
  23.     system("pause");   
  24.     return 0;
  25. }
複製代碼
Attention Seeker </3

TOP

返回列表