How to get the integer value of float number in Go

1 Answer

0 votes
package main 
   
import ( 
    "fmt"
    "math"
) 
   
func main() { 
 	res_1 := math.Trunc(234.8745) 
    res_2 := math.Trunc(-12.99) 
    res_3 := math.Trunc(math.Pi) 
   
    fmt.Printf("%.1f\n", res_1) 
    fmt.Printf("%.1f\n", res_2) 
    fmt.Printf("%.1f\n", res_3) 
} 
 
 
 
/*
run:
 
234.0
-12.0
3.0
 
*/

 



answered Aug 4, 2020 by avibootz
...