Answers for "for loop move to next kotlin"

2

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

kotlin labels

fun onlyPrimes() {
    // You can use labels to specify which loop will skip current iteration

    outer@for (num in 2..100) {
        for (check in 2..(num / 2)) {
            if (num % check == 0) {
                continue@outer
            }
        }
        println(num)
    }
}
Posted by: Guest on November-03-2020

Browse Popular Code Answers by Language