go语言除法四舍五入 发表于 2022-05-18 更新于 2023-09-10 分类于 后端开发 阅读次数: Valine: 加0.5后向下取整 123func round(x float64) int64 { return int64(math.Floor(x + 0.5))}