728x90
https://school.programmers.co.kr/learn/courses/5/lessons/907
public class WhileExam{
public static void main(String[] args){
int i = 1;
while(i < 11){
i++;
if (i % 2 == 0){
System.out.println(i);
}
}
}
}
'JAVA > 프로그래머스 자바 입문' 카테고리의 다른 글
파트3. 제어문 [for문 - 실습] (0) | 2023.02.27 |
---|---|
파트3. 제어문 [do while문] (0) | 2023.02.27 |
파트3. 제어문 [while문 - 실습(1)] (0) | 2023.02.27 |
파트3. 제어문 [switch문 - 실습(1)] (0) | 2023.02.27 |
파트3. 제어문 [switch문] (0) | 2023.02.24 |