Post

Java Do-While Loop

1. Do-While 루프

do-while 루프는 첫 번째 조건 평가가 루프의 첫 번째 반복 후에 이루어진다는 점을 제외하고는 while 루프와 동일하게 동작한다.

1
2
3
do {
    statement;
} while (Boolean-expression);

간단한 예이다.

1
2
3
4
int i = 0;
do {
    System.out.println("Do-While loop: i = " + i++);
} while (i < 5);

[출처 및 참고]

This post is licensed under CC BY 4.0 by the author.