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

TOP

返回列表