- #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])
- {
- i--;
- break;
- }
- }
- }
-
- cout<<"四個隨機亂數:"<<endl;
- for(int i=0;i<4;i++)
- cout<<r[i]<<" ";
- system("pause");
- goto re;
- return 0;
- }
複製代碼 |