本帖最後由 郭博鈞 於 2022-5-14 11:06 編輯
- #include<iostream>
- #include<cstdlib>
- #include<cmath>
- using namespace std;
- int main()
- {
- srand(time(NULL));
- int ans,x,y,ans1;
- long t1,t2,pass;
- while(true)
- {
- x=rand()%49+51;
- y=rand()%49+51;
- ans1=x+y;
- cout<<x<<" + "<<y<<" = ";
- t1=clock();
- cin>>ans;
- t2=clock();
- pass=t2-t1;
-
-
- if(ans==ans1)
- {
- cout<<"答對了! 本題花了"<<pass<<"毫秒思考!"<<endl;
- }else
- {
- cout<<"答錯了! 本題花了"<<pass<<"毫秒思考!"<<endl;
- }
- break;
- }
-
-
- system("pause");
- return 0;
- }
複製代碼 |