您好,登錄后才能下訂單哦!
static void Main(string[] args)
{
//break的用法:主要用于跳出循環(huán)體
//定義i和j二個(gè)變量,用于存儲(chǔ)循環(huán)次數(shù)
int i = 1;
int j = 1;
while (i <= 10)
{
while (j <= 10)
{
Console.WriteLine("我是里面的while循環(huán)");
j++;
break; //跳出內(nèi)循環(huán),繼續(xù)執(zhí)行外循環(huán)
}
Console.WriteLine("我是外面的while循環(huán)");
i++;
}
Console.ReadKey();
}
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。