本帖最後由 周雍程 於 2014-5-17 17:34 編輯
- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- srand(time(NULL));
- system("cls");
- re:
- 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]<<" ";
- }
- system("pause");
- goto re;
- return 0;
- }
複製代碼 |