How to find the Minimum of Two Numbers in Go - Step by Step Examples
How to find the Minimum of Two Numbers in Go ?
Answer
To find the minimum of two numbers in Go, you can use a simple comparison statement.
✐ Examples
1 Minimum of Two Numbers
In this example,
- We declare two variables
a
andb
and assign values to them. - We use an if-else statement to compare
a
andb
to find the minimum. - We print the minimum value.
Go Program
// Minimum of Two Numbers
package main
import (
"fmt"
)
func main() {
a := 10
b := 15
var min int
if a < b {
min = a
} else {
min = b
}
fmt.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 Go language with well detailed examples.