本帖最後由 tonyh 於 2014-5-17 17:29 編輯
試產生4個範圍介於0~9, 不重複之隨機亂數.
- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- srand(time(NULL));
- int r[4];
- for(int i=0; i<4; i++)
- {
- r[i]=rand()%10;
- for(int j=0; j<i; j++)
- {
- if(r[i]==r[j])
- {
- //cout<<"出現重複!"<<endl;
- i--;
- break;
- }
- }
- }
- cout<<"4個介於0~9的不重複隨機亂數為: ";
- for(int i=0; i<4; i++)
- cout<<r[i]<<" ";
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |