- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main(){
- srand(time(NULL));
- int x,y,z,ans;
- x=rand()%49+51;
- y=rand()%49+51;
- ans=x+y;
- cout<<"What's"<<x<<"+"<<y<<"?"<<endl;
-
- float t,tt, ttt;
- t=clock();
- cin>>z;
- tt=clock();
- ttt=tt-t;
-
- if(z==ans){
- cout<<"Yessss you got it! ";
- }
- else{
- cout<<"ur dumb... ";
- }
- cout<<"You took exactly "<<ttt/1000<<" seconds.";
-
- system("pause");
- return 0;
- }
複製代碼 |