返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     srand(time(NULL));
  8.       
  9.     int x, y, ans, ans_c;
  10.     x=rand()%49+51;
  11.     y=rand()%49+51;
  12.     ans_c=x+y;      
  13.     cout<<x<<" + "<<y<<" = ";

  14.     long t1,t2,pass;
  15.     t1=clock();
  16.     cin>>ans;        
  17.     t2=clock();
  18.     pass=t2-t1;        
  19.    
  20.    
  21.     if(ans_c==ans)
  22.     {
  23.         cout<<"答對了! 本題花了"<<pass<<"毫秒思考!"<<endl;
  24.     }
  25.     else
  26.     {
  27.         cout<<"答錯了! 本題花了"<<pass<<"毫秒思考!"<<endl;  
  28.     }
  29.    
  30.     system("pause");
  31.     return 0;
  32. }
複製代碼

TOP

返回列表