static void Main(string[] args)
{
//break的用法:主要用于跳出循环体
//定义i和j二个变量,用于存储循环次数
int i = 1;
int j = 1;
while (i <= 10)
{
while (j <= 10)
{
Console.WriteLine("我是里面的while循环");
j++;
break; //跳出内循环,继续执行外循环
}
Console.WriteLine("我是外面的while循环");
i++;
}
Console.ReadKey();
}
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。