返回列表 發帖

產生不重複之隨機亂數

本帖最後由 tonyh 於 2014-5-17 17:29 編輯

試產生4個範圍介於0~9, 不重複之隨機亂數.

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     srand(time(NULL));
  8.     int r[4];
  9.     for(int i=0; i<4; i++)
  10.     {
  11.          r[i]=rand()%10;
  12.          for(int j=0; j<i; j++)
  13.          {
  14.               if(r[i]==r[j])
  15.               {
  16.                   //cout<<"出現重複!"<<endl;
  17.                   i--;
  18.                   break;
  19.               }
  20.          }
  21.     }
  22.     cout<<"4個介於0~9的不重複隨機亂數為: ";
  23.     for(int i=0; i<4; i++)
  24.          cout<<r[i]<<" ";
  25.     cout<<endl;
  26.     system("pause");
  27.     return 0;   
  28. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

返回列表