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
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
kotlin for
for (i in 1..5) print(i) // "12345"
for (i in 5 downTo 1) print(i) // "54321"
for (i in 0 until 5) { // "01234"
println(i)
}
for(i in 0 until list.size()){
println(i)
}
for loop kotlin
val array = arrayOf(1, 3, 9)
for (item in array) {
//loops items
}
for (index in 0..array.size - 1) {
//loops all indices
}
for (index in 0 untill array.size) {
//loops all indices
}
for (index in array.indices) {
//loops all indices (performs just as well as two examples above)
}
kotlin loop
val school = arrayOf("shark", "salmon", "minnow")
for (element in school) {
print(element + " ")
}
-> shark salmon minnow
for ((index, element) in school.withIndex()) {
println("Item at $index is $elementn")
}
-> Item at 0 is shark
Item at 1 is salmon
Item at 2 is minnow
how to do a for loop loop kotlin
//This is how you do a for loop in Kotlin
fun main() {
for (i in 1..5) {
println(i)
}
}
//It will print
1
2
3
4
5
//have fun trying kotlin! You will get it hopefully very quickly!
//If your try copying and pasting the code put it in this function! Hopefully it will work!
fun main(args: Array<String>) {
println("Hello Bob")
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us