返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     srand(time(NULL));
  8.     re:
  9.     int r[4];
  10.     for(int i=0; i<4; i++)
  11.     {   
  12.         r[i]=rand()%10;
  13.         for(int j=0; j<i; j++)
  14.         {
  15.             if(r[i]==r[j])
  16.             {   
  17.                 i--;
  18.                 break;
  19.             }   
  20.         }                     
  21.     }
  22.     cout<<"四個介於0~9不重複隨機亂數為: ";
  23.     for(int i=0; i<4; i++)
  24.         cout<<r[i]<<" ";
  25.     cout<<endl;
  26.     system("pause");         
  27.     system("cls");
  28.     goto re;
  29.     return 0;
  30. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     srand(time(NULL));
  8.     re:
  9.     system("cls");
  10.     int r[6];
  11.     string name[]={"周雍程","張峻瑋","林宇翔","李允軒","張郁庭","張彥承"};
  12.     for(int i=0; i<3; i++)
  13.     {   
  14.         r[i]=rand()%6;
  15.         for(int j=0; j<i; j++)
  16.         {
  17.             if(r[i]==r[j])
  18.             {   
  19.                 i--;
  20.                 break;
  21.             }   
  22.         }                     
  23.     }
  24.     cout<<"隨機抽出的三位同學為: ";
  25.     for(int i=0; i<3; i++)
  26.         cout<<name[r[i]]<<" ";
  27.     cout<<endl;
  28.     system("pause");         
  29.     system("cls");
  30.     goto re;
  31.     return 0;
  32. }
複製代碼

TOP

返回列表