Answers for "how to do a while loop kotlin"

1

kotlin while

var i = 1
while (i < 5) { 	// while loop
	println(i)
	i++
}					

var i = 1
do { 				// do-while loop
	println(i)
	i++
} while (i < 5)
Posted by: Guest on April-21-2021
0

kotlin while loop

while ( isTrue() );

while ( isTrue() ) {
  println("while!")
}

do {
  println("do while!")
} while (isTrue())
Posted by: Guest on February-02-2021
0

how to do a while loop kotlin

//Here is how to do a while loop in kotlin!
//It is very similar to the syntax of javscript if youa have worked with the langauge!

// Program to print line 5 times

fun main() {

    var i = 1

    while (i <= 5) {
        println("Line $i")
        ++i
    }
}

//this will print 5 times!
Line 1
Line 2
Line 3
Line 4
Line 5




//If your try copying and pasting the code put it in this function! Hopefully it will print!

fun main(args: Array<String>) {

println("Hello Bob")

}
Posted by: Guest on July-26-2021
0

while loop kotlin

for (item in collection) print(item)
Posted by: Guest on March-02-2020

Browse Popular Code Answers by Language