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