返回列表 發帖

[專題實作] 超級金頭腦 (二)

本帖最後由 王瑞喻 於 2020-7-25 11:24 編輯

設計遊戲 "超級金頭腦",
讓使用者計算兩個範圍介於51~99之隨機亂數的和.
參考作法如下:

1. 要有一個起始畫面, 顯示標題與遊戲規則


2. 參賽人數


3. 參賽者姓名


4. 請就位的訊息


5. 測驗中畫面


6. 排名
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int x;
  8.     long t1,t2;
  9.     srand(time(NULL));
  10.     cout<<"*** 超級金頭腦 v1.0 ***"<<endl<<endl;
  11.     cout<<"遊戲規則: 電腦隨機出題, 比賽誰能在最短的時間內算對三題!"<<endl<<endl;
  12.     cout<<"有幾位挑戰者? ";
  13.     cin>>x;
  14.     string name[x];
  15.     long score[x];
  16.     for(int i=0; i<x; i++)
  17.     {
  18.          system("cls");
  19.          score[i]=0;
  20.          cout<<"第"<<i+1<<"位挑戰者你好, 請輸入你的大名: ";
  21.          cin>>name[i];
  22.          cout<<name[i]<<"同學請就位!"<<endl<<endl;
  23.          system("pause");
  24.          system("cls");
  25.          int n=0;   //答對的次數
  26.          int ans;
  27.          
  28.          while(n<3)
  29.          {
  30.              int a=rand()%9+1;
  31.              int b=rand()%9+1;
  32.              cout<<a<<" + "<<b<<" = ";
  33.              t1=clock();
  34.              cin>>ans;
  35.              t2=clock();   
  36.              if(ans==a+b)
  37.              {
  38.                  cout<<"答對了! ";
  39.                  n++;
  40.              }
  41.              else
  42.                  cout<<"答錯了! 正確答案是"<<a+b<<". ";
  43.              cout<<"本題花了"<<t2-t1<<"毫秒思考!"<<endl;
  44.              score[i]+=(t2-t1);
  45.          }
  46.          cout<<endl<<name[i]<<"同學總共花了"<<score[i]<<"毫秒!"<<endl;
  47.          system("pause");
  48.     }
  49.     system("cls");
  50.     cout<<"*** 金頭腦風雲榜 ***"<<endl<<endl;
  51.     string tmp1;
  52.     long tmp2;
  53.     for(int i=0; i<x-1; i++)
  54.     {
  55.         for(int j=i+1; j<x; j++)
  56.         {
  57.              if(score[j]<score[i])
  58.              {
  59.                  tmp1=name[i];
  60.                  name[i]=name[j];
  61.                  name[j]=tmp1;
  62.                  tmp2=score[i];
  63.                  score[i]=score[j];
  64.                  score[j]=tmp2;                    
  65.              }     
  66.         }     
  67.     }
  68.     for(int i=0; i<x; i++)
  69.         cout<<"第"<<i+1<<"名\t"<<name[i]<<"\t"<<score[i]<<"毫秒"<<endl;
  70.     cout<<endl;
  71.     system("pause");
  72.     return 0;
  73. }
複製代碼
Su Wa

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表