在C#中,while
循環的基本語法如下:
while (condition)
{
// 代碼塊
}
其中,condition
是一個布爾表達式,用于測試循環條件。當條件為 true
時,執行循環體內的代碼塊。當條件為 false
時,跳出循環,繼續執行循環之后的代碼。
以下是一個簡單的示例:
int counter = 0;
while (counter < 5)
{
Console.WriteLine("Counter: " + counter);
counter++;
}
這段代碼將輸出:
Counter: 0
Counter: 1
Counter: 2
Counter: 3
Counter: 4