您的位置:首页 > 编程语言 > Java开发

java中break跳出当前循环的实例

2017-06-28 12:29 615 查看
public class Multiplication {

public static void main(String[] args) {
// TODO 自动生成的方法存根
for(int i =1;i<=9;i++){

for(int j=1;j<=i;j++){

int s=i*j;
if(s==7)break;
System.out.print(i+"x"+j+"="+s+'\t');

}
System.out.print('\n');
}
}
}

运行结果

1x1=1

2x1=2 2x2=4

3x1=3 3x2=6
3x3=9

4x1=4 4x2=8
4x3=12 4x4=16

5x1=5 5x2=10
5x3=15 5x4=20
5x5=25

6x1=6 6x2=12
6x3=18 6x4=24
6x5=30 6x6=36

8x1=8 8x2=16
8x3=24 8x4=32
8x5=40 8x6=48
8x7=56 8x8=64

9x1=9 9x2=18
9x3=27 9x4=36
9x5=45 9x6=54
9x7=63 9x8=72
9x9=81

把上述程序中的if语句注释掉:

public class Multiplication {

public static void main(String[] args) {
// TODO 自动生成的方法存根
for(int i =1;i<=9;i++){

for(int j=1;j<=i;j++){

int s=i*j;
//if(s==7)break;
System.out.print(i+"x"+j+"="+s+'\t');

}
System.out.print('\n');
}
}

}

运行结果
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: