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

TOP

返回列表