zhcn 编程语言 Golang Go 文件处理 非公開: C# while 循环

C# while 循环

在 C# 中,while 循环用于多次迭代程序的各个部分。我们建议使用 while 循环而不是for 循环,特别是当迭代次数不固定时。 while 循环语法为:

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

通俗易懂地讲解《C#的while循环》!您必须观看的 2 个最佳视频

while ループ | C# |チュートリアル 18
https://www.youtube.com/watch?v=uqMbyuATj2Y&pp=ugMICgJqYRABGAHKBR0gQyMg44GuIHdoaWxlIOODq-ODvOODlyZobD1KQQ%3D%3D
【C#プログラミング入門】繰り返し処理「for」の書き方とループの順序について徹底解説!
https://www.youtube.com/watch?v=gBgyidNpmHo&pp=ygUdIEMjIOOBriB3aGlsZSDjg6vjg7zjg5cmaGw9SkE%3D
在 C# 中,while 循环用于多次迭代程序的各个部分。我们建议使用 while 循环而不是for 循环,特别是当迭代次数不固定时。 while 循环语法为:

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

通俗易懂地讲解《C#的while循环》!您必须观看的 2 个最佳视频

while ループ | C# |チュートリアル 18
https://www.youtube.com/watch?v=uqMbyuATj2Y&pp=ugMICgJqYRABGAHKBR0gQyMg44GuIHdoaWxlIOODq-ODvOODlyZobD1KQQ%3D%3D
【C#プログラミング入門】繰り返し処理「for」の書き方とループの順序について徹底解説!
https://www.youtube.com/watch?v=gBgyidNpmHo&pp=ygUdIEMjIOOBriB3aGlsZSDjg6vjg7zjg5cmaGw9SkE%3D