http://golang.org/pkg/strconv/http://play.golang.org/p/4VNRgW8WoB如何将浮点数转换为字符串格式?这是谷歌游乐场,但没有得到预期的输出。(2e+07) 我想得到“21312421.213123”package mainimport "fmt"import "strconv"func floattostr(input_num float64) string { // to convert a float number to a string return strconv.FormatFloat(input_num, 'g', 1, 64) } func main() { fmt.Println(floattostr(21312421.213123)) // what I expect is "21312421.213123" in string format }请帮我从浮点数中取出字符串。谢谢
1 回答
- 1 回答
- 0 关注
- 267 浏览
添加回答
举报
0/150
提交
取消