返回列表 發帖
  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.         //51~99->-51 ->0~48
  11.         x=rand()%49+51;
  12.         y=rand()%49+51;
  13.         ans_c=x+y;        //正確答案
  14.         cout<<x<<" + "<<y<<" = ";

  15.         long t1=0,t2=0,pass=0,ac;
  16.         t1=clock();
  17.         cin>>ans;        //使用者輸入答案
  18.         t2=clock();
  19.         pass=t2-t1;
  20.         ac=pass-(pass%1000) ;   
  21.    
  22.         //判斷使用者輸入的答案是否等於正確答案
  23.         if(ans_c==ans)
  24.         {
  25.                 cout<<"答對了! 本題花了"<<ac/1000<<"秒思考!"<<endl;
  26.         }
  27.         else
  28.         {
  29.                 cout<<"答錯了! 本題花了"<<ac/1000<<"秒思考!"<<endl;  
  30.         }
  31.          
  32.    
  33.         system("pause");
  34.         return 0;
  35. }
複製代碼

TOP

返回列表