while(condition){
//logic
}
循环体是单个语句,或者是由多个语句组成的代码块,如果表达式为真,则循环继续执行。
while循环与稍后介绍的do while循环相比,有一个特点,就是永远不会执行一次。这是因为如果表达式的结果为假,则直接退出循环并执行循环后的代码。
[示例] 使用 while 循环输出 0 到 9 的数字。
using System;
namespace it-kiso.com
{
class Demo
{
static void Main(string[] args){
int i = 1;
while(i <= 9){
Console.Write("{0} ", i);
i++;
}
Console.ReadLine();
}
}
} 操作的结果将是:
1 2 3 4 5 6 7 8 9
与 for 循环一样,while 循环也可以嵌套。我们以 99 乘法表的输出为例,看看如何使用 while 循环。
using System;
namespace it-kiso.com
{
class Demo
{
static void Main(string[] args){
int i = 1;
while(i <= 9){
int j = 1;
while(j <= i){
Console.Write("{0} x {1} = {2} ", j, i, i*j);
j++;
}
i++;
Console.WriteLine();
}
Console.ReadLine();
}
}
} 操作的结果将是:
1 x 1 = 1
1 x 2 = 2 2 x 2 = 4
1 x 3 = 3 2 x 3 = 6 3 x 3 = 9
1 x 4 = 4 2 x 4 = 8 3 x 4 = 12 4 x 4 = 16
1 x 5 = 5 2 x 5 = 10 3 x 5 = 15 4 x 5 = 20 5 x 5 = 25
1 x 6 = 6 2 x 6 = 12 3 x 6 = 18 4 x 6 = 24 5 x 6 = 30 6 x 6 = 36
1 x 7 = 7 2 x 7 = 14 3 x 7 = 21 4 x 7 = 28 5 x 7 = 35 6 x 7 = 42 7 x 7 = 49
1 x 8 = 8 2 x 8 = 16 3 x 8 = 24 4 x 8 = 32 5 x 8 = 40 6 x 8 = 48 7 x 8 = 56 8 x 8 = 64
1 x 9 = 9 2 x 9 = 18 3 x 9 = 27 4 x 9 = 36 5 x 9 = 45 6 x 9 = 54 7 x 9 = 63 8 x 9 = 72 9 x 9 = 81




![2021 年如何设置 Raspberry Pi Web 服务器 [指南]](https://i0.wp.com/pcmanabu.com/wp-content/uploads/2019/10/web-server-02-309x198.png?w=1200&resize=1200,0&ssl=1)

