How to find the Maximum of Three Numbers in Kotlin


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,

  1. We declare three variables a, b, and c and assign values to them.
  2. We use the maxOf function to find the maximum of the three numbers.
  3. 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.




More Kotlin Comparison Operations Tutorials

  1. How to find the Maximum of Two Numbers in Kotlin ?
  2. How to find the Minimum of Two Numbers in Kotlin ?
  3. How to find the Maximum of Three Numbers in Kotlin ?
  4. How to find the Minimum of Three Numbers in Kotlin ?