返回列表 發帖

[作業] 產生不重複之隨機亂數 (二)

本帖最後由 tonyh 於 2014-5-24 16:46 編輯

假設班上有七位同學: 雍程, 彥承, 允軒, 郁庭, 宇翔, 峻瑋, 得旗.
試做一程式, 可隨機地抽選出三位同學.

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     string name[7]={"雍程", "彥承", "允軒", "郁庭", "宇翔", "峻瑋", "得旗"};
  8.     int r[3];
  9.     srand(time(NULL));
  10.     for(int i=0; i<3; i++)
  11.     {
  12.          r[i]=rand()%7;
  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<<"隨機抽出的三位同學為: ";
  23.     for(int i=0; i<3; i++)
  24.         cout<<name[r[i]]<<" ";
  25.     cout<<endl;
  26.     system("pause");
  27.     return 0;
  28. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表