返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. #include<cmath>
  5. using namespace std;
  6. int main()
  7. {
  8.     float a,b,c;
  9.     srand(time(NULL));
  10.     int n[2];
  11.     re:
  12.     for(int i=0; i<2; i++)
  13.         {
  14.              n[i]=rand()%49+51;

  15.         }
  16.     cout<<n[0]<<"+"<<n[1]<<"=?";
  17.     cin>>a;
  18.     b=clock()-c;
  19.     if(a==n[0]+n[1]){

  20.         cout<<"答對了! 本題花了"<<b<<"毫秒思考"<<endl;


  21.      }else
  22.     {
  23.         cout<<"答錯了! 本題花了"<<b<<"毫秒思考"<<endl;
  24.     }
  25.     c=clock();


  26.     goto re;
  27.     system("pause");
  28.     return 0;
  29. }
複製代碼

TOP

返回列表