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