15.C#--break的使用

2021-06-07 14:05

阅读:404

标签:stat   void   定义   跳出循环   write   ++   while循环   static   rgs   

static void Main(string[] args)
{
//break的用法:主要用于跳出循环体
//定义i和j二个变量,用于存储循环次数
int i = 1;
int j = 1;
while (i {
while (j {
Console.WriteLine("我是里面的while循环");
j++;
break; //跳出内循环,继续执行外循环
}
Console.WriteLine("我是外面的while循环");
i++;
}
Console.ReadKey();
}

15.C#--break的使用

标签:stat   void   定义   跳出循环   write   ++   while循环   static   rgs   

原文地址:https://blog.51cto.com/12679593/2381763


评论


亲,登录后才可以留言!