返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.         int n;
  8.         cout<<"超腦金頭腦 v1.0 "<<endl;
  9.         cout<<endl;
  10.         cout<<"遊戲規則: 電腦隨機出題,比賽誰能在最短時間內算對三題!"<<endl;
  11.         system("pause");
  12.         system("cls");
  13.         
  14.         cout<<"有幾位挑戰者:";
  15.         cin>>n;
  16.         system("pause");
  17.         system("cls");
  18.         string name[n];
  19.         for(int i=0;i<n;i++)
  20.         {
  21.             cout<<"第"<<i+1<<"位挑戰著好,請輸入你的大名:";
  22.             cin>>name[i];
  23.             system("pause");
  24.             system("cls");
  25.             
  26.             int cout=0
  27.             while(count<3)
  28.             {
  29.                 int a=rand()%889+111;
  30.                 int b=rand()%889+111;
  31.                 double start,end,pass;
  32.                
  33.                 int ans;
  34.                 start=clock();
  35.                 cout<<a<<"+"<<b<<"=";
  36.                 cin>>ans ;
  37.                 end=clock();
  38.                 pass=end-start;
  39.                
  40.                 if            
  41.             }
  42.         }
  43.         
  44.                
  45.     system("pause");
  46.     return 0;
  47. }
複製代碼

TOP

返回列表