返回列表 發帖
本帖最後由 蔡依宸 於 2019-3-29 22:39 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.    srand(time(NULL));  
  8.    int n;
  9.   
  10.    cout<<"*** 超級金頭腦 v1.0 ***"<<endl;
  11.    cout<<endl;
  12.    cout<<"遊戲規則: 電腦隨機出題,比賽誰能在最短時間內算對三題!"<<endl;
  13.    system("pause");  
  14.    system("cls");  
  15.    cout<<"有幾位挑戰者? ";
  16.    cin>>n;
  17.    string name[n];
  18.    double sum[n];   
  19.    
  20.    system("cls");
  21.                  
  22.    for(int i=0;i<n;i++)   
  23.    {
  24.       cout<<"第"<<i+1<<"位挑戰者您好,請輸入您的大名:";
  25.       cin>>name[i];
  26.       system("pause");
  27.       system("cls");
  28.       cout<<name[i]<<"同學請就位!"<<endl;
  29.       system("pause");
  30.       system("cls");
  31.       
  32.       int count=0;   
  33.       while(count<3)  
  34.       {
  35.            int a,b,ans;
  36.            double start,end,pass;  
  37.            a = rand()%889+111;   
  38.            b = rand()%889+111;
  39.            cout<<a<<" + "<<b <<" = ";
  40.            start = clock();  
  41.            cin>>ans;
  42.            end = clock();  
  43.            pass = end-start;  
  44.            if(ans == (a+b))
  45.            {
  46.                cout<<"答對了!本題你花了"<<pass<<"毫秒思考!"<<endl;
  47.                sum[i] += pass;   
  48.                count++;
  49.            }else
  50.            {
  51.                cout<<"答錯了!經過"<<pass<<"毫秒!"<<endl;
  52.                sum[i] += pass;  
  53.            }
  54.       }
  55.       cout<<name[i]<<"同學總共花了"<<sum[i]<<"毫秒!"<<endl;
  56.       system("pause");
  57.       system("cls");
  58.    }
複製代碼

TOP

返回列表