Answers for "kotlin while loop"

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

while loop kotlin

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

kotlin if

if (a > b) {
    max = a
} else {
    max = b
}
Posted by: Guest on March-26-2020

Browse Popular Code Answers by Language