返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {

  7.    int n;
  8.    cout<<"超級金頭腦v1.0"<<endl;
  9.    cout<<"遊戲規則:電腦隨機出題 最短時間內答對三題獲勝"<<endl;
  10.    system("pause");
  11.    system("cls");
  12.    
  13.    
  14.    cout<<"有幾位挑戰者"<<endl;
  15.    cin>>n;
  16.    system("pause");
  17.    system("cls");
  18.    
  19.    string name[n];
  20.    for(int i=0;i<n;i++)
  21.    {
  22.     cout<<"第"<<n+1<<"挑戰者 你好 請輸入你的大名"<<endl;
  23.     cin>>name[i];
  24.    }
  25.    system("pause");
  26.    system("cls");
  27.    
  28.    int count=0;
  29.    while(count<3)
  30.    {
  31.    int a =rand()899%+111;
  32.    int b =rand()899%+111;
  33.     double start,end,pass;
  34.    
  35.     int ans;
  36.     start clock();
  37.     cout<a<"+"<b<"="<<endl;
  38.     cin>>ans;
  39.     end=clock();
  40.     pass=end-start;
  41.    

  42.    
  43.    
  44.    
  45.    
  46.    
  47.    
  48.    
  49.    }
  50.    
  51.    



  52.    system("pause");
  53.    return 0;


  54. }
複製代碼

TOP

返回列表