- #include <iostream>
- #include <cstdlib>
- #include <ctime>
- using namespace std;
- int main()
- {
- srand(time(NULL));
- int n[4];
- for(int i=1;i<=20;i++){
- for(int j=0;j<=3;j++){
- n[j]=rand()%10;
- for(int k=0;k<j;k++){
- if(n[k]==n[j]){
- j--;
- }
- }
- }
- for(int i=0;i<=3;i++){
- cout<<n[i]<<"\t";
- }
- _sleep(500);
- cout<<endl;}
- system("pause");
- return 0;
- }
複製代碼 |