標題:
[5-5][隨堂測驗]猜數字
[打印本頁]
作者:
李泳霖
時間:
2023-11-22 12:05
標題:
[5-5][隨堂測驗]猜數字
本帖最後由 李泳霖 於 2024-1-9 10:27 編輯
一、請使用do....while設計一猜數字遊戲
二、設定一個謎底
三、限制使用者只能猜測三次
//猜數字遊戲
int sceret_num = 66; //謎底
複製代碼
//猜數字遊戲
int sceret_num = 66; //謎底
int guess;
int guess_conut = 0;
int guess_limit = 3;
bool win = false;
do
{
System.Console.Write("請輸入猜測: ");
guess = System.Convert.ToInt32(System.Console.ReadLine());
guess_conut++;
if (guess > sceret_num)
{
System.Console.WriteLine("小一點");
}
else if (guess < sceret_num)
{
System.Console.WriteLine("大一點");
}
else
{
System.Console.WriteLine("恭喜你答對了!");
win = true;
}
} while (sceret_num != guess && guess_conut<guess_limit);
if(!win)
{
System.Console.WriteLine("你輸了!");
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2