循环 while:


马克- to-win:马克 java社区:防盗版实名手机尾号: 73203。
马克-to-win:当while(i<4),当i<4时,一直执行括号里的东西,当执行到右大括号,回到while判断一下,条件成立,继续执行。
例1:
public class Test45 {
    public static void main(String[] args) {
        int i = 0;
        while (i < 2) {
            System.out.println(i);
            System.out.println("你好");
            i++;
        }
    }
}
结果:
0
你好
1
你好





例2:打印从3到6

public class Test46 {
    public static void main(String[] args) {
        int i = 3;
        while (i < 7) {
            System.out.println(i);
            i++;
        }
    }
}
结果:
3
4
5
6



作业1:马克-to-win:打印年级1-6,假如i==3打印练太极,假如i==4,打印美术,假如i==5打印跳舞

public class Test47 {
    public static void main(String[] args) {
        int i = 1;
        while (i < 7) {
            System.out.println(i);
            if (i == 3) {
                System.out.println("练太极");
            }
            if (i == 4) {
                System.out.println("美术");
            }
            if (i == 5) {
                System.out.println("舞蹈");
            }
            i++;
        }
    }
}
结果:
1
2
3
练太极
4
美术
5
舞蹈
6



作业2:阅读

public class Test48 {
    public static void main(String[] args) {
        int i = 1;
        while (i < 7) {
            if (i < 5 && i > 3)

            {
                System.out.println(i + "中高年级");
            }
            i++;
        }
    }
}
结果:
4中高年级