本帖最後由 孫子傑 於 2022-5-14 11:35 編輯
- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- re:
- srand(time(NULL));
- int x,y,z;
- long t1=0 , t2=0;
- x=rand()%49+51;
- y=rand()%49+51;
- cout<<x<<" + "<<y<<" = ";
- t1=clock();
- cin>>z;
- t2=clock();
- if(z == x+y)
- {
- cout<<"答對了!本題花了"<<(t2-t1)/1000<<"秒思考!"<<endl;
-
- }else
- {
- cout<<"答錯了!本題花了"<<(t2-t1)/1000<<"秒思考!"<<endl;
-
- }
- goto re;
- system("pause");
- return 0;
- }
複製代碼 |