How to find the absolute value of a number in Go

1 Answer

0 votes
package main 
   
import ( 
    "fmt"
    "math"
) 
   
func main() { 
   	res_1 := math.Abs(5) 
    res_2 := math.Abs(-10) 
    res_3 := math.Abs(math.Inf(-9)) 
   
    fmt.Printf("%.1f\n", res_1) 
    fmt.Printf("%.1f\n", res_2) 
    fmt.Printf("%.1f\n", res_3) 
} 
 
 
 
/*
run:
 
5.0
10.0
+Inf
 
*/

 



answered Aug 4, 2020 by avibootz
...