break and continue
Posted PoeticalJustice
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了break and continue相关的知识,希望对你有一定的参考价值。
1 public class TestBreakAndContinue { 2 3 /** 4 * 测试break and continue 5 */ 6 public static void main(String[] args) { 7 int total =0; 8 System.out.println("Begin"); 9 while(true){ 10 total++; 11 int i=(int)Math.round(100*Math.random()); 12 if(i==88){ 13 break; 14 } 15 } 16 System.out.println("Game over,used"+total+"times."); 17 System.out.println("#################"); 18 19 for(int i=100;i<150;i++){ 20 if(i%3==0){ 21 continue; 22 } 23 System.out.println(i); 24 } 25 // 打印101-150中的质数(0和自己本身整除)outer是标签 可以指定位置跳转 比如下面 continue outer直接跳到外层循环 而不进入里层死循环 26 27 outer:for(int i=101;i<150;i++){ 28 for(int j=2;j<i/2;j++){ 29 continue outer; 30 } 31 System.out.println(i+""); 32 } 33 34 35 } 36 37 }
以上是关于break and continue的主要内容,如果未能解决你的问题,请参考以下文章
java基础 ------- 多重循环 and break与continue