返回列表 發帖
  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.            
  20.    
  21.         
  22.         if(ans_c==ans)
  23.         {
  24.                 cout<<"答對了! 花了"<<t2-t1<"毫秒!"<<endl;
  25.         }
  26.         else
  27.         {
  28.                 cout<<"答錯了! 花了"<<t2-t1<<"毫秒!"<<endl;  
  29.         }
  30.          
  31.    
  32.         system("pause");
  33.         return 0;
  34. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main(){
  6.     srand(time(NULL));
  7.     int x,y,ans,ans_c;
  8.     x=rand()%49+51;
  9.     y=rand()%49+51;
  10.     ans_c=x+y;
  11.     cout<<x<<"+"<<y<<"=";
  12.    
  13.     long t1,t2;
  14.     t1=clock();
  15.     cin>>ans;
  16.     t2=clock();
  17.     if(ans_c==ans)
  18.         {
  19.             cout<<"正確,花了"<<t2-t1<<"毫秒"<<endl;
  20.         }
  21.         else
  22.         {
  23.             cout<<"錯誤,花了"<<t2-t1<<"毫秒"<<endl;  
  24.         }
  25.     system("pause");
  26.     return 0;   
  27. }
複製代碼

TOP

返回列表