Answers for "four loop in kotlin"

22

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
Posted by: Guest on June-16-2020
0

kotlin iterate 1 to 10

//iterating from one to ten Kotlin Example
for (i in 1..10) print(i)
Posted by: Guest on January-06-2022

Browse Popular Code Answers by Language