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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     re:
  8.     srand(time(NULL));
  9.     int n, a, b, ans;
  10.    
  11.     double start, end, pass;
  12.     cout<<"*** 超級金頭腦 v1.0 ***"<<endl<<endl;
  13.     cout<<"遊戲規則:電腦隨機出題,比賽誰能在最短時間內算對三題!"<<endl;
  14.     system("pause");
  15.     system("cls");
  16.     cout<<"請問有幾位挑戰者?";
  17.     cin>>n;
  18.     string name[n];
  19.     long sum[n];
  20.     system("cls");
  21.     for(int i=0; i<n; i++)
  22.     {
  23.         cout<<"第"<<i+1<<"位挑戰者你好,影輸入大名: ";
  24.         cin>>name[i];
  25.         system("pause");
  26.         system("cls");
  27.         cout<<name[i]<<"同學請就位!"<<endl;
  28.         system("pause");
  29.         system("cls");
  30.         
  31.         int count=0;
  32.         while (count<3)
  33.         {
  34.             a = rand()%889+111;
  35.             b = rand()%889+111;
  36.             cout<<a<<"+"<<b<<"=";
  37.             start = clock();
  38.             cin>>ans;
  39.             end = clock();
  40.             pass= end - start;
  41.             if(ans==(a+b))
  42.             {
  43.                 cout<<"答對了!本題你花了"<<pass<<"毫秒思考"<<endl;
  44.                 count++;
  45.             }else
  46.             {
  47.                 cout<<"答錯了!請從新作答"<<endl;
  48.             }
  49.         }
  50.     }
  51.             cout<<"*** 金頭腦風雲榜 ***"<<endl<<endl;
  52.     string tmp1;
  53.     long tmp2;
  54.     for(int i=0; i<n-1; i++)
  55.     {
  56.         for(int j=i+1; j<n; j++)
  57.         {
  58.              if(sum[j]<sum[i])
  59.              {
  60.                  tmp1=name[i];
  61.                  name[i]=name[j];
  62.                  name[j]=tmp1;
  63.                  tmp2=sum[i];
  64.                  sum[i]=sum[j];
  65.                  sum[j]=tmp2;                    
  66.              }     
  67.         }     
  68.     }
  69.     for(int i=0; i<n; i++)
  70.         cout<<"第"<<i+1<<"名\t"<<name[i]<<"\t"<<sum[i]<<"毫秒"<<endl;
  71.     cout<<endl;
  72.         system("pause");
  73.         system("cls");

  74.     goto re;
  75.     system("pause");     
  76.     return 0;   
  77. }
複製代碼

TOP

返回列表