返回列表 發帖
  1. #include<iostream>
  2. #include<ctime>
  3. using namespace std;

  4. int main(){
  5.    
  6.     srand(time(NULL));
  7.     for(int i=1; i<=20; i++){
  8.         int n[4];
  9.         for(int j=0; j<=3; j++){
  10.             n[j]=rand()%10;
  11.             
  12.             for(int k=0; k<=j-1; k++){
  13.                
  14.                 if(n[j]==n[k]){
  15.                     j--;
  16.                 }
  17.             }
  18.         }
  19.         for(int j=0; j<=3; j++){
  20.             cout<<n[j]<<" ";
  21.         }
  22.         cout<<endl;
  23.     }
  24.    
  25.     system("pause");
  26.     return 0;
  27. }
複製代碼

TOP

返回列表