티스토리 뷰

[주제]

- 'while문'의 작동 구조 및 방식



[중요]

- 조건이 참(True)일 경우 무한대로 반복 실행

- 내용에 빠져나갈 수 있는 처리가 필수

- 'do ~ while'은 무조건 내용을 1회 실행 후 조건을 판단



[소스 코딩]

package whileClass;
 
class whileClass {
    public static void main(String[] args) {
/*
    [while]
    while(조건)
    {
        내용
    }
    - 조건이 참(True)일 경우 '{ }'안에 있는 내용을 무한대로 실행
    - 조건이 거짓(False)일 경우 while문이 무시되고 넘어감
*/
    int i;
 
    for(i=0; i<5; i++){
        System.out.println("for loop~");
    }
 
    System.out.println();
 
    int w = 0;
    while(w < 5){
        System.out.println("while loop~");
        w++;
    }
 
    System.out.println();
/*
    [do while]
    do
    {
        내용
    } while(조건)
    - 'while'과 다른 점은 우선 무조건 내용을 1회 실행하고 나서 조건을 판단
*/
    w = 0;
    do{
        System.out.println("do while loop~");
        w++;
    } while(w < 5);
    }
}
cs



■ 실행결과

'프로그래밍 언어 > Java(연습)' 카테고리의 다른 글

break  (0) 2016.04.25
조건문 switch  (0) 2016.04.25
조건문 if  (0) 2016.04.22
반복문 for  (0) 2016.04.22
논리 연산  (0) 2016.04.21
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함