“Kotlin -Pause” Code-Antworten

Kotlin -Etiketten

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)
    }
}
Noob_Code

Kotlin -Pause

fun main(args: Array<String>) {

    for (i in 1..10) {
        if (i == 5) {
            break
        }
        println(i)
    }
}
SAMER SAEID

Ähnliche Antworten wie “Kotlin -Pause”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen