How to find the Maximum of Three Numbers in Kotlin - Step by Step Examples
How to find the Maximum of Three Numbers in Kotlin ?
Answer
To find the maximum of three numbers in Kotlin, you can use the maxOf function.
✐ Examples
1 Maximum of Three Numbers
In this example,
- We declare three variables 
a,b, andcand assign values to them. - We use the 
maxOffunction to find the maximum of the three numbers. - We print the maximum value.
 
Kotlin Program
// Maximum of Three Numbers
fun main() {
    val a = 10
    val b = 15
    val c = 20
    val maxVal = maxOf(a, b, c)
    println("Maximum of $a, $b, and $c is: $maxVal")
}Output
Maximum of 10, 15, and 20 is: 20
Summary
In this tutorial, we learned How to find the Maximum of Three Numbers in Kotlin language with well detailed examples.