using System;
public class Program
{
public static void Main()
int n = 0;
while (n < 5)
Console.WriteLine(n);
n++;//n++是ouput出運算前結果,只表示n往上增加,不會真的運算
}