kotlin ranges
for (nums
in 5..15) {
println(nums)
}
kotlin ranges
for (nums
in 5..15) {
println(nums)
}
kotlin range
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)
}
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