반응형
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 | 31 |
Tags
- GIT
- PANDAS
- c#
- 파이썬
- Apache
- Kotlin
- Excel
- hive
- Github
- PySpark
- string
- gas
- matplotlib
- Python
- array
- Java
- Tkinter
- PostgreSQL
- Redshift
- Google Excel
- math
- django
- dataframe
- SQL
- list
- Google Spreadsheet
- numpy
- Mac
- google apps script
Archives
- Today
- Total
달나라 노트
Kotlin - Loops 본문
728x90
반응형
Original source = play.kotlinlang.org/byExample/01_introduction/01_Hello%20world
먼저 for loop를 봅시다.
fun main() {
var colors = listOf("Blue", "Sky", "Black", "White", "Red")
println(colors)
for (i in colors) {
println(i)
}
}
-- Result
[Blue, Sky, Black, White, Red]
Blue
Sky
Black
White
Red
for loop는 위처럼 사용할 수 있습니다.
Java와 비슷합니다.
* 참고
list를 생성하기 위해선 listOf method를 사용하면 됩니다.
fun main() {
var i = 0
while (i <= 5) {
println(i)
i = i + 1
}
var j = 0
do {
println(j)
j = j + 1
} while (j <= 5)
}
-- Result
0
1
2
3
4
5
0
1
2
3
4
5
while loop, do-while loop도 다른 일반적인 언어와 비슷합니다.
728x90
반응형
'Kotlin' 카테고리의 다른 글
Kotlin - Set (0) | 2021.03.15 |
---|---|
Kotlin - List (0) | 2021.03.15 |
Kotlin - when 구문 (0) | 2021.03.15 |
Kotlin - Inheritance (상속) (0) | 2021.03.15 |
Kotlin - Class (0) | 2021.03.15 |
Comments