美文网首页
无标题文章

无标题文章

作者: 特_e52a | 来源:发表于2017-03-27 21:50 被阅读0次

    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("我爱林青霞");

    }

    }

    }

    相关文章

      网友评论

          本文标题:无标题文章

          本文链接:https://www.haomeiwen.com/subject/nmkdottx.html