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

TOP

返回列表