在C#中,while
循環會一直執行,直到給定的條件不再滿足。退出條件是定義在while
關鍵字后面的括號中的布爾表達式。當這個表達式的值為false
時,循環將停止執行。
以下是一個簡單的示例,展示了如何在C#中使用while
循環和設置退出條件:
using System;
class Program
{
static void Main()
{
int counter = 0;
while (counter < 5) // 退出條件:當counter不小于5時,循環停止
{
Console.WriteLine("Counter: " + counter);
counter++; // 每次迭代時,計數器加1
}
}
}
在這個示例中,我們定義了一個名為counter
的變量,并將其初始值設置為0。然后,我們創建了一個while
循環,其退出條件是counter < 5
。在循環內部,我們打印counter
的值,并在每次迭代時將其加1。當counter
不再小于5時,循環將停止執行。