返回列表 發帖

[隨堂測驗] 超級金頭腦 (一)

本帖最後由 葉桔良 於 2023-4-15 19:37 編輯

設計遊戲 "超級金頭腦",
讓使用者計算兩個範圍介於51~99之隨機亂數的和.



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

返回列表