kotlin반복문On this page반복문 for for (요소 변수 in 컬렉션(iterator) 또는 범위) { 반복할 본문 } for(i in 1..10) println(i)for(i in 10 downTo 1) println(i)for(i in 1..10 step 2) println(i)for(i in 10 downTo 1 step 2) println(i) while while (조건식) { 반복할 본문 }조건식이 true인 동안 본문의 무한 반복