返回列表 發帖
  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.         y=rand()%49+51;
  10.         ans_c=x+y;
  11.         cout<<x<<" + "<<y<<" = ";
  12.         long t1,t2,pass;
  13.         t1=clock();
  14.         cin>>ans;
  15.         t2=clock();
  16.         pass=t2-t1;
  17.         if(ans_c==ans)
  18.         {
  19.                 cout<<"答對了! 本題花了"<<pass<<"毫秒思考!"<<endl;
  20.         }
  21.         else
  22.         {
  23.                 cout<<"答錯了! 本題花了"<<pass<<"毫秒思考!"<<endl;  
  24.         }
  25.         system("pause");
  26.         return 0;
  27. }
複製代碼

TOP

返回列表