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