2012年11月1日 星期四

while

while(條件式){
敘述句;
 ...
}

當條件式為true時,程式區段內的程式碼會重複執行


例如:

public class Test{

    public static void main(String[] args){

        int i = 1;

        while(i < 5){


            System.out.println("第"+ i +"次執行");
            i++;

 

        }
        System.out.println("執行結束");

    }

}

結果:
第1次執行
第2次執行
第3次執行
第4次執行
執行結束


其中 i++; 如果沒有寫入,則會造成無窮迴圈

沒有留言:

張貼留言