本帖最後由 王建葦 於 2019-11-30 09:45 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- srand(time(NULL));
- int i;
- string c[]= {"蔡英文(民主進步黨)",
- "韓國瑜(中國國民黨)",
- "宋楚瑜(親民黨)",
- "賴清德(民主進步黨)",
- "張善政(無黨籍)",
- "余湘(無黨籍)"};
- cout<<"----抽籤程式-----"<<endl;
- cout<<"本次總統大選候選人(第15屆):"<<endl;
- for(i=0;i<6;i++)
- {
- cout<<c[i]<<endl;
- }
- cout<<"共"<<i<<"位"<<endl;
- cout<<"--------------------------------------------------"<<endl;
- cout<<"預測結果:"<<endl<<endl;
- system("pause");
- for(int r=1;r<=rand();r++)
- {
- if(r%2==1)
- {
- cout<<"------預測結果:------"<<endl<<endl;
- cout<<"當選人:"<<c[rand()%5]<<endl;
- }else
- {
- cout<<"++++++預測結果:++++++"<<endl<<endl;
- cout<<"當選人:"<<c[rand()%5]<<endl;
- }
- _sleep(50);
- system("cls");
- }
- cout<<"當選人:"<<c[rand()%5]<<endl;
- cout<<"--------------------------------------------------"<<endl;
- cout<<"提醒您:2020/1/11日記得前往戶籍地之投票所投票並記得攜帶:身分證(必備)、印章、投票通知"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |