返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.    re:
  8.    long start, end, pass;   
  9.    int n;
  10.    int a;
  11.    int b;            
  12.    int ans;
  13.    cout<<"----------超級金頭腦-----------"<<endl;
  14.    cout<<endl;
  15.    cout<<"遊戲規則: 電腦隨機出題,比賽誰能在最短時間答對三題!"<<endl;
  16.    system("pause");
  17.    system("cls");
  18.    
  19.    cout<<"有幾位挑戰者: ";
  20.    cin>>n;
  21.    system("pause");
  22.    system("cls");  
  23.    
  24.    string name[n];
  25.    long sum[n];
  26.    srand(time(NULL));
  27.    
  28.    for(int i=0;i<n;i++)
  29.    {
  30.            sum[i]=0;
  31.       cout<<"第"<<i+1<<"挑戰者你好,請輸入大名: ";
  32.       cin>>name[i];
  33.       system("pause");
  34.       system("cls");
  35.       
  36.       cout<<"同學請就位!"<<endl;
  37.       system("pause");
  38.       system("cls");
  39.       
  40.       int count=0;
  41.       while(count<3)
  42.       {
  43.                   
  44.           a=rand()%9+1;
  45.           b=rand()%9+1;
  46.          start = clock();
  47.          cout<<a<<" + "<<b<<" = ";
  48.          cin>>ans;
  49.          end = clock();
  50.          pass = end-start;
  51.          
  52.          if(ans == (a+b))
  53.          {
  54.             cout<<"答對ㄌ!!!本題花ㄌ"<<pass<<"豪秒思考!"<<endl;
  55.             sum[i] = sum[i] + pass;
  56.             count++;
  57.          }
  58.          else
  59.          {
  60.             cout<<"答錯了!正確答案是"<<a+b<<". 本題花了"<<pass<<"毫秒思考!"<<endl;
  61.             sum[i] = sum[i] + pass;
  62.          }  
  63.       }
  64.    }
  65.           cout<<"----------超級金頭腦-----------"<<endl;
  66.           string tmp1;
  67.           long tmp2;
  68.           for(int i=0;i<n-1;i++)
  69.           {
  70.              for(int j=i+1;j<n;j++)
  71.              {
  72.                 if(sum[j]<sum[i])
  73.                 {
  74.                    tmp1 = name[i];
  75.                    name[i] = name[j];
  76.                    name[j] = tmp1;
  77.                    tmp2 = sum[i];
  78.                    sum[i] = sum[j];
  79.                    sum[j] = tmp2;
  80.                 }
  81.              }
  82.           }
  83.    for(int i=0; i<n; i++)
  84.       cout<<"第"<<i+1<<"名\t"<<name[i]<<"\t"<<sum[i]<<"毫秒"<<endl;
  85.       cout<<endl;
  86.       system("pause");
  87.       system("cls");
  88.      
  89.    goto re;
  90.    system("pause");
  91.    return 0;
  92. }
複製代碼

TOP

返回列表