返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main(){
  6.       srand(time(NULL));
  7.       int x,y,z,ans;
  8.       x=rand()%49+51;
  9.       y=rand()%49+51;
  10.       ans=x+y;
  11.       cout<<"What's"<<x<<"+"<<y<<"?"<<endl;
  12.       
  13.       float t,tt, ttt;
  14.       t=clock();
  15.       cin>>z;
  16.       tt=clock();
  17.       ttt=tt-t;
  18.       
  19.       if(z==ans){
  20.                  cout<<"Yessss you got it! ";
  21.                  }
  22.       else{
  23.            cout<<"ur dumb... ";
  24.            }
  25.       cout<<"You took exactly "<<ttt/1000<<" seconds.";
  26.       
  27.       system("pause");
  28.       return 0;
  29.       }
複製代碼
Attention Seeker </3

TOP

返回列表