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