- #include<iostream>
- #include<ctime>
- using namespace std;
- int main()
- {
- srand(time(NULL));
- int x,y,ans,ans_1;
- x=rand()%49+51;
- y=rand()%49+51;
- ans=x+y;
- cout<<x<<" + "<<y<<" = ";
- int start,end,p;
- start=clock();
- cin>>ans_1;
- end=clock();
- p=end-start;
-
- if(ans==ans_1)
- {
- cout<<"Correct. Time taken: "<<p<<" Seconds"<<endl;
- }
- else
- {
- cout<<"Incorrect. Time taken: "<<p<<" Seconds"<<endl;
- }
-
- system("pause");
- return 0;
- system("pause");
- return 0;
- }
複製代碼 |