Notice
Recent Posts
Recent Comments
«   2024/11   »
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
Archives
Today
Total
관리 메뉴

충분히 쌓여가는

while 문 본문

Java/JAVA1

while 문

빌드이너프 2023. 5. 18. 16:09

while 문

조건을 만족시키는 동안 블럭{} 반복

반복 횟수 모를 때 주로 사용

for 문과 달리 while 문은 조건식 생략 불가

 

while (조건식) {
	// 조건식의 연산결과가 true인 동안, 반복될 문장들을 적는다
}

 

public class practice {
    public static void main(String[] args) {
        int i = 1;

        while (i <= 10) {
            System.out.println(i);
            i++;
        }
    }
}

1
2
3
4
5
6
7
8
9
10

 

public class practice {
    public static void main(String[] args) {
        for (int i = 1; i <= 10; i++) {
            System.out.println(i);
        }
    }
}

1
2
3
4
5
6
7
8
9
10

'Java > JAVA1' 카테고리의 다른 글

break 문  (0) 2023.05.18
do - while 문  (0) 2023.05.18
향상된 for 문  (0) 2023.05.18
별찍기  (0) 2023.05.18
중첩 for 문  (0) 2023.05.18