C# - Do...While循环



不像forwhile循环那样在循环开始时测试循环条件,do...while循环在循环结束时检查其条件。

do...while循环类似于while循环,不同之处在于do...while循环保证至少执行一次。

语法

C#中do...while循环的语法如下:

do {
   statement(s);
} while( condition );

请注意,条件表达式出现在循环的末尾,因此循环中的语句会在条件被测试之前执行一次。

如果条件为真,控制流跳转回do,循环中的语句再次执行。这个过程重复,直到给定的条件变为假。

流程图

do...while loop in C#

示例

using System;

namespace Loops {
   class Program {
      static void Main(string[] args) {
         /* local variable definition */
         int a = 10;
         
         /* do loop execution */
         do {
            Console.WriteLine("value of a: {0}", a);
            a = a + 1;
         } 
         while (a < 20);
         Console.ReadLine();
      }
   }
} 

编译并执行上述代码后,将产生以下结果:

value of a: 10
value of a: 11
value of a: 12
value of a: 13
value of a: 14
value of a: 15
value of a: 16
value of a: 17
value of a: 18
value of a: 19
csharp_loops.htm
广告