Open In App

Finding the Absolute Value of Specified Number in Golang

Go language provides inbuilt support for basic constants and mathematical functions to perform operations on the numbers with the help of the math package. You are allowed to find the absolute value of the specified number with the help of Abs() function provided by the math package. So, you need to add a math package in your program with the help of the import keyword to access the Abs() function.

Syntax:



func Abs(y float64) float64

Let us discuss this concept with the help of the given examples:

Example 1:






// Golang program to illustrate
// how to find absolute value
package main
  
import (
    "fmt"
    "math"
)
  
// Main function
func main() {
  
    // Finding absolute value
    // Using Abs() function
    res_1 := math.Abs(4)
    res_2 := math.Abs(-8)
    res_3 := math.Abs(math.Inf(-3))
  
    // Displaying the result
    fmt.Printf("Result 1: %.1f", res_1)
    fmt.Printf("\nResult 2: %.1f", res_2)
    fmt.Printf("\nResult 3: %.1f", res_3)
}

Output:

Result 1: 4.0
Result 2: 8.0
Result 3: +Inf

Example 2:




// Golang program to illustrate
// how to find absolute value
package main
  
import (
    "fmt"
    "math"
)
  
// Main function
func main() {
    // Finding absolute value
    nvalue_1 := math.Abs(20)
    nvalue_2 := math.Abs(34)
  
    // Sum of the given values
    res := nvalue_1 + nvalue_2
  
    // Displaying results
    fmt.Printf("%.1f + %.1f = %.1f",
            nvalue_1, nvalue_2, res)
  
}

Output:

20.0 + 34.0 = 54.0

Article Tags :