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
Program in Go language to print Floyd's Triangle
GO Program to find area and circumference of circle
GO Program to take user input and addition of two strings
Program in Go language to Calculate Average Using Arrays
GO language program with an example of Hash Table
GO language program with example of Sort Functions for integer, strings and float64 data type