返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.         srand(time(NULL));
  8.       
  9.         int x, y, ans, ans_c;
  10.         
  11.         x=rand()%49+51;
  12.         y=rand()%49+51;
  13.         ans_c=x+y;        
  14.         cout<<x<<"+"<<y<<"=";

  15.         long t1,t2;
  16.         t1=clock();
  17.         cin>>ans;        
  18.         t2=clock();

  19.         if(ans_c==ans)
  20.         {
  21.         cout<<"正確!本題花了"<<(t2-t1)/1000<<"秒思考!"<<endl;
  22.         }
  23.         else
  24.         {
  25.         cout<<"錯誤! 本題花了"<<(t2-t1)/1000<<"秒思考!"<<endl;  
  26.         }
  27.          
  28.    
  29.         system("pause");
  30.         return 0;
  31. }
複製代碼

TOP

返回列表