返回列表 發帖
  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.          while(n<3)
  28.          {
  29.              int a=rand()%9+1;
  30.              int b=rand()%9+1;
  31.              cout<<a<<" + "<<b<<" = ";
  32.              t1=clock();
  33.              cin>>ans;
  34.              t2=clock();   
  35.              if(ans==a+b)
  36.              {
  37.                  cout<<"答對了! ";
  38.                  n++;
  39.              }
  40.              else
  41.                  cout<<"答錯了! 正確答案是"<<a+b<<". ";
  42.              cout<<"本題花了"<<t2-t1<<"毫秒思考!"<<endl;
  43.              score[i]+=(t2-t1);
  44.          }
  45.          cout<<endl<<name[i]<<"同學總共花了"<<score[i]<<"毫秒!"<<endl;
  46.          system("pause");
  47.     }
  48.     system("cls");
  49.     cout<<"*** 金頭腦風雲榜 ***"<<endl<<endl;
  50.     string tmp1;
  51.     long tmp2;
  52.     for(int i=0; i<x-1; i++)
  53.     {
  54.         for(int j=i+1; j<x; j++)
  55.         {
  56.              if(score[j]<score[i])
  57.              {
  58.                  tmp1=name[i];
  59.                  name[i]=name[j];
  60.                  name[j]=tmp1;
  61.                  tmp2=score[i];
  62.                  score[i]=score[j];
  63.                  score[j]=tmp2;                    
  64.              }     
  65.         }     
  66.     }
  67.     for(int i=0; i<x; i++)
  68.     cout<<"第"<<i+1<<"名\t"<<name[i]<<"\t"<<score[i]<<"毫秒"<<endl;
  69.     cout<<endl;
  70.     system("pause");
  71.     return 0;
  72. }
複製代碼

TOP

返回列表