返回列表 發帖
本帖最後由 王建葦 於 2019-11-30 09:45 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     int i;
  8.     string c[]= {"蔡英文(民主進步黨)",
  9.                  "韓國瑜(中國國民黨)",
  10.                  "宋楚瑜(親民黨)",
  11.                  "賴清德(民主進步黨)",
  12.                  "張善政(無黨籍)",
  13.                  "余湘(無黨籍)"};
  14.     cout<<"----抽籤程式-----"<<endl;
  15.     cout<<"本次總統大選候選人(第15屆):"<<endl;
  16.     for(i=0;i<6;i++)
  17.     {
  18.         cout<<c[i]<<endl;
  19.     }
  20.     cout<<"共"<<i<<"位"<<endl;
  21.     cout<<"--------------------------------------------------"<<endl;
  22.     cout<<"預測結果:"<<endl<<endl;
  23.     system("pause");
  24.     for(int r=1;r<=rand();r++)
  25.     {
  26.          if(r%2==1)
  27.          {
  28.              cout<<"------預測結果:------"<<endl<<endl;
  29.              cout<<"當選人:"<<c[rand()%5]<<endl;
  30.          }else
  31.          {
  32.              cout<<"++++++預測結果:++++++"<<endl<<endl;
  33.              cout<<"當選人:"<<c[rand()%5]<<endl;  
  34.          }
  35.          _sleep(50);
  36.          system("cls");  
  37.     }
  38.     cout<<"當選人:"<<c[rand()%5]<<endl;
  39.     cout<<"--------------------------------------------------"<<endl;
  40.     cout<<"提醒您:2020/1/11日記得前往戶籍地之投票所投票並記得攜帶:身分證(必備)、印章、投票通知"<<endl;
  41.     system("pause");
  42.     return 0;
  43. }
複製代碼
Jian-wei Wang

TOP

返回列表