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

TOP

返回列表