返回列表 發帖
本帖最後由 郭博鈞 於 2022-5-14 11:06 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. using namespace std;
  5. int main()
  6. {
  7.     srand(time(NULL));
  8.   int ans,x,y,ans1;
  9.   long t1,t2,pass;
  10.   while(true)
  11.   {
  12.       x=rand()%49+51;
  13.       y=rand()%49+51;
  14.       ans1=x+y;
  15.       cout<<x<<" + "<<y<<" = ";
  16.       t1=clock();
  17.       cin>>ans;
  18.       t2=clock();      
  19.       pass=t2-t1;
  20.       
  21.   
  22.       if(ans==ans1)
  23.       {
  24.          cout<<"答對了! 本題花了"<<pass<<"毫秒思考!"<<endl;         
  25.       }else
  26.       {
  27.          cout<<"答錯了! 本題花了"<<pass<<"毫秒思考!"<<endl;  
  28.       }
  29.       break;      
  30. }
  31.    
  32.    
  33. system("pause");   
  34. return 0;   
  35. }
複製代碼

TOP

返回列表