本帖最後由 tonyh 於 2021-4-17 20:23 編輯
假設班上有五位同學: 子耕, 思惟, 璽安, 侑成, 挺桂.
試做一程式, 可隨機地抽選出三位同學. (抽籤的目的自由發揮)
- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- string n[5]={"子耕", "思惟", "璽安", "侑成", "挺桂"};
- int x[3];
- srand(time(NULL));
- for(int i=0; i<3; i++)
- {
- x[i]=rand()%5; //0~4
- for(int j=0; j<i; j++)
- {
- if(x[i]==x[j])
- {
- i--;
- break;
- }
- }
- }
- cout<<"掃廁所三位同學: ";
- for(int i=0; i<3; i++)
- cout<<n[x[i]]<<" ";
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |