반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Java
- Google Excel
- google apps script
- Redshift
- numpy
- Tkinter
- 파이썬
- dataframe
- SQL
- hive
- PostgreSQL
- Mac
- matplotlib
- django
- Python
- GIT
- c#
- array
- Excel
- math
- list
- string
- Github
- gas
- Kotlin
- PANDAS
- PySpark
- Google Spreadsheet
- Apache
Archives
- Today
- Total
달나라 노트
Java - while loop 본문
728x90
반응형
Original source = www.w3schools.com
While 반복문은 아래처럼 사용할 수 있습니다.
public class JavaWhileLoop {
public static void main(String args[]) {
int i = 0;
while (i <= 10) {
System.out.println(i);
i = i + 1;
}
}
}
-- Result
0
1
2
3
4
5
6
7
8
9
10
약간의 변형된 형태로 Do/While loop도 아래처럼 사용할 수 있습니다.
public class JavaWhileLoop {
public static void main(String args[]) {
int i = 0;
do {
System.out.println(i);
i = i + 1;
}
while (i <= 10);
}
}
-- Result
0
1
2
3
4
5
6
7
8
9
10
728x90
반응형
'Java' 카테고리의 다른 글
Java - Variables (변수) (0) | 2021.03.11 |
---|---|
Java - Datatype (0) | 2021.03.11 |
Java - switch ~ case ~ default (0) | 2021.03.11 |
Java - Math : max, min, sqrt, abs, random (0) | 2021.03.11 |
Java - if ~ else if ~ else (0) | 2021.03.11 |
Comments