您好,登錄后才能下訂單哦!
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<Test> * { * <code to be looped> * } * * 執(zhí)行過程: * 1. 計算<Test>布爾表達式的值; * 2. 如果<Test>布爾表達式的值為true,則執(zhí)行標記為循環(huán)的代碼; * 3. 如果<Test>布爾表達式的值為false,則退出循環(huán)執(zhí)行循環(huán)結(jié)構(gòu)外的代碼; * 4. 如果<Test>布爾表達式的值為true時,則重復(fù)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(); } } }
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。