목차
while 예제 - 조건 충족 시 반복 실행
while 정의
do...while... 예제 - 일단 실행 후 조건 충족 시 반복 실행
while 예제 - 조건 충족 시 반복 실행
Hz.java
public class Hz {
public static void main(String[] args) {
int i = 0;
while (i < 5) {
System.out.println(i);
i++;
}
}
}
결과값:
0
1
2
3
4
while 정의
지정 조건이 참이면 계속 반복 실행.
1.
white 반복문 유형.
① while 반복문
조건 먼저 판별 후, 조건이 참이면 반복 실행.
② do...while... 반복문
일단 먼저 한 번 실행 후,
조건 판별해 조건이 참이면 do 부분에 정의한 코드를 반복 실행.
2.
조건 판별에 사용된 변수를 가감해야 무한 반복 막을 수 있음.
3.
break 키워드 : 특정 조건일 때 반복문 탈출.
continue 키워드 : 특정 조건일 때 실행 않고, 다음 조건으로 건너뜀.
do...while... 예제 - 일단 실행 후 조건 충족 시 반복 실행
Hz.java
public class Hz {
public static void main(String[] args) {
int i = 0;
do {
System.out.println(i);
i++;
}
while (i < 5);
}
}
결과값:
0
1
2
3
4
주소 복사
랜덤 이동