using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace _16.流程控制之while循環(huán)
{
class Program
{
static void Main(string[] args)
{
/**
* while循環(huán)語句
* 其語法:
* while
* {
*
* }
*
* 執(zhí)行過程:
* 1. 計算布爾表達式的值;
* 2. 如果布爾表達式的值為true,則執(zhí)行標記為循環(huán)的代碼;
* 3. 如果布爾表達式的值為false,則退出循環(huán)執(zhí)行循環(huán)結(jié)構(gòu)外的代碼;
* 4. 如果布爾表達式的值為true時,則重復1~3步驟。
*
* 特殊說明:
* 1. do...while語句中的循環(huán)體至少被執(zhí)行一次,而while語句中循環(huán)體可能不被執(zhí)行。
* 2. while語句后面不用書寫分號。
*
*/
// 求2+4+...+10計算的結(jié)果。
int i = 2, sum = 0;
do
{
sum += i;
i += 2;
} while (i <= 10);
Console.WriteLine("2+4+...+10 = {0}", sum);
Console.ReadKey();
}
}
}
分享名稱:十六、流程控制之while循環(huán)
文章分享:
http://weahome.cn/article/pcojii.html