本帖最後由 葉桔良 於 2023-4-15 19:37 編輯
設計遊戲 "超級金頭腦",
讓使用者計算兩個範圍介於51~99之隨機亂數的和.
- #include<iostream>
- #include<cstdlib>
- #include<ctime>
- using namespace std;
- int main()
- {
- int a, b, ans;
- long t1, t2, t3;
- srand(time(NULL));
- while(true)
- {
- a = rand()%49+51;
- b = rand()%49+51;
- cout<<a<<" + "<<b<<" = ";
- t1 = clock();
- cin>>ans;
- t2 = clock();
- t3 = t2 - t1;
- if (ans==a+b)
- cout<<"答對了! 本題花了"<<t3<<"毫秒思考!"<<endl;
- else
- cout<<"答錯了! 本題花了"<<t3<<"毫秒思考!"<<endl;
-
- }
- system("pause");
- return 0;
- }
複製代碼 |