在C#中,你可以使用while
循環來實現一個簡單的游戲邏輯。下面是一個示例,展示了如何使用while
循環創建一個簡單的猜數字游戲:
using System;
namespace SimpleGame
{
class Program
{
static void Main(string[] args)
{
Random random = new Random();
int secretNumber = random.Next(1, 101); // 生成一個1到100之間的隨機數
int attempts = 0; // 記錄玩家嘗試次數
Console.WriteLine("歡迎來到猜數字游戲!請猜一個1到100之間的整數:");
while (true)
{
string input = Console.ReadLine(); // 獲取用戶輸入
int guess;
if (int.TryParse(input, out guess)) // 嘗試將輸入轉換為整數
{
attempts++; // 增加嘗試次數
if (guess == secretNumber) // 判斷玩家猜對了
{
Console.WriteLine($"恭喜你,猜對了!數字是 {secretNumber}。你嘗試了{attempts}次。");
break; // 退出循環
}
else if (guess< secretNumber)
{
Console.WriteLine("猜測太低了,請再試一次:");
}
else
{
Console.WriteLine("猜測太高了,請再試一次:");
}
}
else
{
Console.WriteLine("無效的輸入,請輸入一個1到100之間的整數:");
}
}
}
}
}
這個示例中,我們首先生成一個1到100之間的隨機數作為“秘密數字”。然后,我們使用while
循環不斷地獲取用戶輸入,并判斷用戶輸入的數字是否與秘密數字相等。如果玩家猜對了,游戲結束;如果猜錯了,游戲繼續進行,直到玩家猜對為止。