How to find the Maximum of Two Numbers in Kotlin - Step by Step Examples
How to find the Maximum of Two Numbers in Kotlin ?
Answer
To find the maximum of two numbers in Kotlin, you can use the coerceAtLeast function.
✐ Examples
1 Maximum of Two Numbers
In this example,
- We declare two variables
aandband assign values to them. - We use the
coerceAtLeastfunction to find the maximum ofaandband store it in a variable namedmax. - We print the maximum value using
println.
Kotlin Program
fun main() {
val a = 10
val b = 15
val max = a.coerceAtLeast(b)
println("Maximum of $a and $b is: $max")
}Output
Maximum of 10 and 15 is: 15
Summary
In this tutorial, we learned How to find the Maximum of Two Numbers in Kotlin language with well detailed examples.