📌  相关文章
📜  golang 将浮点数舍入到位数 - Go 编程语言代码示例

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

代码示例10
// Rounds float64 number to nbDigits
func Round(num float64, nbDigits float64) float64 {
    pow := math.Pow(10., nbDigits)
    rounded := float64(int(num*pow)) / pow
    return rounded
}