网站首页 > 技术文章 正文
/**
* 测试break和continue语句
*/
public class TestBreak {
public static void main(String[] args) {
while (true){
//条件为true导致无限循环
int i = (int)(Math.random()*101);
//循环内定义的变量退出循环后消失
System.out.println(i);
if (i==88){
break;
//遇到break会强制退出循环,死循环中止
}
}
int count = 0;
for(int i = 100;i<=150;i++){
if(i%3==0)continue;
System.out.print(i+" ");
count++;
if(count%5==0){
System.out.println();
}
}
System.out.println();
outer:for (int i = 100;i<=150;i++){
//跳转用outer 带标签的coutinue
for(int j = 2;j<i/2;j++){
if (i%j==0){
continue outer;
//回到outer行 进行下一个循环
}
}
System.out.print(i+" ");
}
System.out.println();
count = 0;
for (int i = 100;i<=150;i++){
for (int j = 2;i>=j*j;j++){
if (i%j==0){
count = 1;
break;
//break会强制退出当前循环,这里会回到上一层循环继续
}
}
if (count==0){
System.out.print(i+" ");
}
count = 0;
}
}
}
猜你喜欢
- 2024-11-27 用for循环写一个九九乘法表
- 2024-11-27 三菱plc编程,FOR循环指令详解
- 2024-11-27 通过几个事例,就可以说明 for...of 循环在 JS 是不可或缺
- 2024-11-27 年近半百自学Python之流程控制break和continue
- 2024-11-27 C语言程序设计(谭浩强第五版) 第5章 循环结构程序设计 习题解析答案
- 2024-11-27 C语言for循环语句使用形式总结
- 2024-11-27 C# break和continue区别
- 2024-11-27 VBA基本语法之For循环结构,都有什么含义,具体该怎么使用?
- 2024-11-27 C语言(五):for,break,continue
- 2024-11-27 C语言for循环小例子
- 标签列表
-
- content-disposition (47)
- nth-child (56)
- math.pow (44)
- 原型和原型链 (63)
- canvas mdn (36)
- css @media (49)
- promise mdn (39)
- readasdataurl (52)
- if-modified-since (49)
- css ::after (50)
- border-image-slice (40)
- flex mdn (37)
- .join (41)
- function.apply (60)
- input type number (64)
- weakmap (62)
- js arguments (45)
- js delete方法 (61)
- blob type (44)
- math.max.apply (51)
- js (44)
- firefox 3 (47)
- cssbox-sizing (52)
- js删除 (49)
- js for continue (56)
- 最新留言
-