无标题文章

package com.itheima_07;

/*

* continue:继续的意思

* 使用场景:

* 循环中

* 注意:

* 离开使用场景是没有意义的

* 作用:

* 结束一次循环,继续下一次的循环

* 区别:

* break:退出循环

* continue:结束一次循环,继续下一次的循环

*/

public class ContinueDemo {

public static void main(String[] args) {

//continue;

for(int x=1; x<=10; x++) {

if(x == 3) {

//break;

continue;

}

System.out.println("HelloWorld");

}

}

}



package com.itheima_07;

/*

* break:中断的意思

* 使用场景:

* A:switch语句中

* B:循环中

* 注意:

* 离开使用场景是没有意义的。

* 作用:

* 跳出循环,让循环提前结束

*/

public class BreakDemo {

public static void main(String[] args) {

//break;

for(int x=1; x<=10; x++) {

if(x == 3) {

break;

}

System.out.println("HelloWorld");

}

}

}



package com.itheima_07;

/*

* 按要求分析结果,并验证

*

* break:输出2次

* continue:输出7次

*/

public class BreakAndContinueDemo {

public static void main(String[] args) {

for (int x = 1; x <= 10; x++) {

if (x % 3 == 0) {

// 分别写break,continue,说说输出几次

//break;

continue;

}

System.out.println("我爱林青霞");

}

}

}

你可能感兴趣的:(无标题文章)