- #include<cstdlib>
- #include<ctime>
- #include<ctime>
- using namespace std;
- int main()
- {
- srand(time(NULL));
-
- int a, b, c, d;
- a=rand()%49+51;
- b=rand()%49+51;
- c=a+b;
- cout<<a<<" + "<<b<<" = ";
- long e,f,g;
- e=clock();
- cin>>d;
- f=clock();
- g=f-e;
- if(c==d)
- {
- cout<<"答對共花了"<<g<<"秒"<<endl;
-
- }
- else
- {
- cout<<"答錯共花了"<<g<<"秒"<<endl;
-
- }
- system("pause");
- return 0;
- }
複製代碼 |