標題:
超級金頭腦 (一)
[打印本頁]
作者:
鄭繼威
時間:
2023-2-22 00:16
標題:
超級金頭腦 (一)
本帖最後由 鄭繼威 於 2023-2-22 21:11 編輯
設計遊戲 "超級金頭腦",
讓使用者計算兩個範圍介於51~99之隨機亂數的和.
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
int x, y, ans, ans_c;
//51~99->-51 ->0~48
x=rand()%49+51;
y=rand()%49+51;
ans_c=x+y; //正確答案
cout<<x<<" + "<<y<<" = ";
long t1,t2,pass;
t1=clock();
cin>>ans; //使用者輸入答案
t2=clock();
pass=t2-t1; //經過的秒數
//判斷使用者輸入的答案是否等於正確答案
if(ans_c==ans)
{
cout<<"答對了! 本題花了"<<pass<<"毫秒思考!"<<endl;
}
else
{
cout<<"答錯了! 本題花了"<<pass<<"毫秒思考!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李彣
時間:
2023-2-22 21:17
此帖僅作者可見
作者:
林劭杰
時間:
2023-2-27 11:31
此帖僅作者可見
作者:
黃裕恩
時間:
2023-2-27 11:37
此帖僅作者可見
作者:
林劭澧
時間:
2023-2-28 21:24
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2