一、C# do while语句
do while语句是先执行一次循环体,然后再判断是否需要重复执行循环体的循环控制语句。
语法格式如下:
do
{
embedded-statement
}while(boolean-expression);先执行一次循环体语句embedded-statement,然后再对boolean-expression进行判断,如果为True,则重复执行循环体;如果为False,则继续执行下面的语句。
do while循环语句可以执行一次或多次循环体。
二、示例
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
// C# do while语句-www.baike369.com
int x = 0;
int y = 0;
do
{
y += x;
x++;
Console.WriteLine("y = {0}", y);
} while (x < 10);
Console.ReadLine();
}
}
}
运行结果:
y = 0
y = 1
y = 3
y = 6
y = 10
y = 15
y = 21
y = 28
y = 36
y = 45