How to find the Minimum of Two Numbers in Kotlin - Step by Step Examples
How to find the Minimum of Two Numbers in Kotlin ?
Answer
To find the minimum of two numbers in Kotlin, you can use the minOf function.
✐ Examples
1 Minimum of Two Numbers
In this example,
- We declare two variables
a
andb
and assign values to them. - We use the
minOf
function to find the minimum ofa
andb
. - We print the minimum value.
Kotlin Program
// Minimum of Two Numbers
fun main() {
val a = 10
val b = 15
val min = minOf(a, b)
println("Minimum of $a and $b is: $min")
}
Output
Minimum of 10 and 15 is: 10
Summary
In this tutorial, we learned How to find the Minimum of Two Numbers in Kotlin language with well detailed examples.