- #include <iostream>
- #include <cstdlib>
- #include <ctime>
- using namespace std;
- int main()
- {
- int a,b,c;
- float t,t1=0;
- re:
- system("cls");
- a=rand()%49+51;
- b=rand()%49+51;
- cout<<a<<" + "<<b<<" = ";
- cin>>c;
- t=clock()-t1;
- if(c==a+b)
- {
- cout<<"答對了! 本題花了"<<t<<"毫秒思考"<<endl;
- }
- else
- {
- cout<<"答錯了! 本題花了"<<t<<"毫秒思考"<<endl;
- }
- t1=clock();
- system("pause");
- goto re;
- return 0;
- }
複製代碼 |