如何使用 C# do while 循环?

do...while 循环在循环结束时检查其条件。它类似于 while 循环,不同之处在于 do...while 循环保证至少执行一次。

创建一个 do while 循环 -

do {

   statement(s);

} while( condition );

条件表达式出现在循环的末尾,因此statement(s)in 循环在测试条件之前执行一次。

如果条件为真,则控制流跳回 do,statement(s)循环再次执行。这个过程重复,直到给定的条件变为假。

以下是一个例子 -

示例

using System;

namespace Loops {

   class Program {

      static void Main(string[] args) {

         /* local variable definition */

         int a = 50;

         /* do loop execution */

         do {

            Console.WriteLine("value of a: {0}", a);

            a = a + 1;

         }

         while (a < 20);

         Console.ReadLine();

      }

   }

}

输出结果
value of a: 50

以上是 如何使用 C# do while 循环? 的全部内容, 来源链接: utcz.com/z/359777.html

回到顶部