返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7. srand(time(NULL));
  8. system("cls");   
  9. re:
  10.   int r[4];        
  11.   for(int i=0;i<4;i++)
  12.   {      
  13.    r[i]=rand()%10;
  14.    for(int j=0;j<i;j++)
  15.    {        
  16.     if(r[i]==r[j])
  17.     {
  18.      i--;
  19.      break;            
  20.     }      
  21.    }         
  22.   }  
  23.    
  24.   cout<<"四個隨機亂數:"<<endl;
  25.   for(int i=0;i<4;i++)  
  26.   cout<<r[i]<<" ";   
  27. system("pause");
  28. goto re;   
  29. return 0;   
  30. }
複製代碼

TOP

返回列表