循环语句

1. 循环结构

2. for循环语句

3. whlie循环语句

 

循环语句_第1张图片

 

for循环执行过程

for(int i = 0; i < 10; i++){
     System.out.println(i);
}

public class TestFor{
    public static void main(String args []){
        System.out.println("准备进入循环语句");
        for(int i = 0; i < 10; i++){
            System.out.println(i);
        }
        System.out.println("循环语句结束");
    }
}

while:

public class TestWhile{
    public static void main(String args []){
        int i = 0;
        while(i < 10){
            System.out.println(i);

        }
    }
}

此为无限循环。强制停止:ctrl+S

public class TestWhile{
    public static void main(String args []){
        int i = 0;
        while(i < 10){
            System.out.println(i);
            i++;
        }
    }
}

 

Microsoft Windows [版本 6.1.7601]
版权所有 (c) 2009 Microsoft Corporation。保留所有权利。

C:\Users\asus>d:

D:\>cd work

D:\work>cd src

D:\work\src>javac TestFor.java

D:\work\src>java TestFor
准备进入循环语句
0
1
2
3
4
5
6
7
8
9
循环语句结束

你可能感兴趣的:(循环语句)