返回列表 發帖

[隨堂測驗] 產生不重複之隨機亂數 (三)

本帖最後由 tonyh 於 2021-4-17 20:23 編輯

假設班上有五位同學: 子耕, 思惟, 璽安, 侑成, 挺桂.
試做一程式, 可隨機地抽選出三位同學. (抽籤的目的自由發揮)

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     string n[5]={"子耕", "思惟", "璽安", "侑成", "挺桂"};
  8.     int x[3];
  9.     srand(time(NULL));
  10.     for(int i=0; i<3; i++)
  11.     {
  12.          x[i]=rand()%5;   //0~4
  13.          for(int j=0; j<i; j++)
  14.          {
  15.               if(x[i]==x[j])
  16.               {
  17.                   i--;
  18.                   break;              
  19.               }
  20.          }  
  21.     }
  22.     cout<<"掃廁所三位同學: ";
  23.     for(int i=0; i<3; i++)
  24.         cout<<n[x[i]]<<" ";
  25.     cout<<endl;
  26.     system("pause");
  27.     return 0;   
  28. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表