返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     srand(time(NULL));
  8.     int x, y, ans, ans_c;
  9.     x=rand()%49+51;
  10.     y=rand()%49+51;
  11.     ans_c=x+y;
  12.     cout<<x<<" + "<<y<<"= ";
  13.     long t1,t2,pass;
  14.     t1=clock();
  15.     cin>>ans;
  16.     t2=clock();
  17.     pass=t2-t1;
  18.     if(ans_c==ans)
  19.     {
  20.             cout<<"答對了!本題花了"<<pass<<"秒思考!"<<endl;
  21.         }
  22.         else
  23.         {
  24.                 cout<<"答錯了!本題花了"<<pass<<"秒思考!"<<endl;
  25.         }
  26.         system("pause");
  27.     return 0;
  28.    
  29. }
複製代碼

TOP

返回列表