golang向上取整、向下取整和四舍五入

马谦的博客 ·
最后那个少了返回类型,修改一下: ```go func round(x float64) int { return int(math.Floor(x + 0/5)) } ```
#3
更多评论
math.round(f float64) float64 官方库math里有round 四舍五入到最近的整数。
#2