GO Program to Find the Largest Number Among Three Numbers
In this example, the largest number among three numbers (entered by the user) is found using if statement. An if statement consists of a Boolean expression followed by one or more statements.
Example
package main
import "fmt"
func main() {
fmt.Println("Enter 3 numbers :")
var first int
fmt.Scanln(&first)
var second int
fmt.Scanln(&second)
var third int
fmt.Scanln(&third)
/* check the boolean condition using if statement */
if (first>=second && first>=third) {
fmt.Println(first, "is Largest among three numbers.") /* if condition is true then print the following */
}
if (second>=first && second>=third){
fmt.Println(second, "is Largest among three numbers.")
}
if (third>=first && third>=second) {
fmt.Println(third, "is Largest among three numbers")
}
}
Most Helpful This Week
GO Program to Calculate Area of Rectangle and Square
Program in Go language to Calculate Standard Deviation using Math package
GO language program with example of Array Reverse Sort Functions for integer and strings
GO language program with example of Sort Functions for integer, strings and float64 data type
GO language program with example of String Compare function
Program in Golang to print Pyramid of Numbers