2 Star 1 Fork 2

go-mao/mao

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
float.go 211 Bytes
一键复制 编辑 原始数据 按行查看 历史
haitgo 提交于 2022-11-29 11:15 . v1.0.0
package utils
import (
"fmt"
"strconv"
)
// 浮点数取小数位数
func FloatFiexd(n float64, l int) float64 {
d := fmt.Sprintf(fmt.Sprint("%.", l, "f"), n)
v, _ := strconv.ParseFloat(d, 64)
return v
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/go-mao/mao.git
git@gitee.com:go-mao/mao.git
go-mao
mao
mao
v1.0.24

搜索帮助