kotlin loop time code example
Example 1: kotlin loop
for (i in 1..5) print(i)
-> 12345
for (i in 5 downTo 1) print(i)
-> 54321
for (i in 3..6 step 2) print(i)
-> 35
for (i in 'd'..'g') print (i)
-> defg
Example 2: kotlin loop
var bubbles = 0
while (bubbles < 50) {
bubbles++
}
println("$bubbles bubbles in the water\n")
do {
bubbles--
} while (bubbles > 50)
println("$bubbles bubbles in the water\n")
repeat(2) {
println("A fish is swimming")
}
-> 50 bubbles in the water
49 bubbles in the water
A fish is swimmingA fish is swimming