Q:

Golang program to print the absolute value of float number

belongs to collection: Golang Basic Programs

0

In this program, we will create a variable of float type initialize with -19.25, and then print the absolute value of the variable on the console screen.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to print the absolute value of the float number is given below. The given program is compiled and executed successfully.

// Golang program to print the 
// absolute value of float number.

package main
import "fmt"
import "math"

func main() {
    var val float64 = -19.25
    
    fmt.Printf("Absolute value of %f is %f",val,math.Abs(val)) 
}

Output:

Absolute value of -19.250000 is 19.250000

In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the fmt package that includes the files of package fmt then we can use a function related to the fmt package.

Here, we also included the math package to use math-related functions. Here, we used the Abs() function of the math package to find the absolute value of the specified float variable and print the result on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Golang Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Golang program to print the absolute value for an ... >>
<< Golang program to get the ASCII value of a charact...