📌  相关文章
📜  golang round float to number of ditigs 精度 - Go 编程语言 - Go 编程语言代码示例

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

代码示例4
// 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
}