for 迴圈
For Loop 非常適合做一些事情。它就像一個 While 迴圈,但增量包含在條件中。
For Loop 的設定如下:
for (Initialization; Condition; Increment)
{
// Code
}
初始化 - 建立一個只能在迴圈中使用的新區域性變數。
條件 - 迴圈僅在條件為真時執行。
增量 - 每次迴圈執行時變數的變化方式。
一個例子:
for (int i = 0; i < 5; i++)
{
Console.WriteLine(i);
}
輸出:
0
1
2
3
4
你也可以在 For 迴圈中省略空格,但必須使用所有分號才能執行。
int input = Console.ReadLine();
for ( ; input < 10; input + 2)
{
Console.WriteLine(input);
}
輸出為 3:
3
5
7
9
11