충분히 쌓여가는
while 문 본문
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