返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;

  5. int main()
  6. {
  7.     int num1, num2;
  8.     int in,wer;
  9.     srand(time(NULL));
  10.     num1 = rand() % 48 + 51;
  11.     num2 = rand() % 48 + 51;
  12.     wer = num1 + num2;
  13.     cout << num1 << " + " << num2 << " = ?" << endl;
  14.     cin >> in;
  15.     if (in != wer)
  16.         cout << "答錯了!本題花了" << clock() << "毫秒的時間思考" << endl;
  17.     else
  18.         cout<< "答對了!本題花了" << clock() << "毫秒的時間思考" << endl;
  19.     system("pause");
  20.     system("cls");
  21.     return 0;
  22. }
複製代碼

TOP

返回列表