📌  相关文章
📜  golang 将浮点数截断到小数点后 1 位 - Go 编程语言代码示例

📅  最后修改于: 2022-03-11 14:44:59.667000             🧑  作者: Mango

代码示例1
x := 12.3456
fmt.Println(math.Floor(x*100)/100) // 12.34 (round down)
fmt.Println(math.Round(x*100)/100) // 12.35 (round to nearest)
fmt.Println(math.Ceil(x*100)/100)  // 12.35 (round up)