Go Tutorials

Go Programs

How to find the Maximum of Two Numbers in Go


How to find the Maximum of Two Numbers in Go ?

Answer

To find the maximum of two numbers in Go, you can use a simple comparison operation.



✐ Examples

1 Maximum of Two Numbers

In this example,

  1. We declare two variables a and b and assign values to them.
  2. We use an if statement to check which number is greater between a and b.
  3. We print the maximum value.

Go Program

// Maximum of Two Numbers
package main

import (
	"fmt"
)

func main() {
	a := 10
	b := 15
	var max int

	if a > b {
		max = a
	} else {
		max = b
	}

	fmt.Printf("Maximum of %d and %d is: %d\n", a, b, max)
}

Output

Maximum of 10 and 15 is: 15

Summary

In this tutorial, we learned How to find the Maximum of Two Numbers in Go language with well detailed examples.




More Go Comparison Operations Tutorials

  1. How to find the Maximum of Two Numbers in Go ?
  2. How to find the Minimum of Two Numbers in Go ?
  3. How to find the Maximum of Three Numbers in Go ?
  4. How to find the Minimum of Three Numbers in Go ?