1 回答

TA貢獻(xiàn)1797條經(jīng)驗(yàn) 獲得超6個(gè)贊
基本上,您有 2 種輸出格式:科學(xué)記數(shù)法或常規(guī)格式。這兩種格式之間的轉(zhuǎn)折點(diǎn)是1e12.
所以你可以分支 if x >= 1e12。在兩個(gè)分支中,您都可以使用 0 小數(shù)位進(jìn)行格式化以查看數(shù)字的長(zhǎng)度,因此您可以計(jì)算出適合 12 寬度的小數(shù)位數(shù),因此您可以使用計(jì)算出的精度構(gòu)造最終的格式字符串.
科學(xué)記數(shù)法(%g)中也需要預(yù)先檢查,因?yàn)橹笖?shù)的寬度可能會(huì)有所不同(例如e+1,e+10,e+100)。
這是一個(gè)示例實(shí)現(xiàn)。這是讓您入門,但并不意味著處理所有情況,也不是最有效的解決方案(但相對(duì)簡(jiǎn)單并且可以完成工作):
// format12 formats x to be 12 chars long.
func format12(x float64) string {
if x >= 1e12 {
// Check to see how many fraction digits fit in:
s := fmt.Sprintf("%.g", x)
format := fmt.Sprintf("%%12.%dg", 12-len(s))
return fmt.Sprintf(format, x)
}
// Check to see how many fraction digits fit in:
s := fmt.Sprintf("%.0f", x)
if len(s) == 12 {
return s
}
format := fmt.Sprintf("%%%d.%df", len(s), 12-len(s)-1)
return fmt.Sprintf(format, x)
}
測(cè)試它:
fs := []float64{0, 1234.567890123, 0.1234567890123, 123456789012.0, 1234567890123.0,
9.405090880450127e+9, 9.405090880450127e+19, 9.405090880450127e+119}
for _, f := range fs {
fmt.Println(format12(f))
}
輸出(在Go Playground上試試):
0.0000000000
0.1234567890
1234.5678901
123456789012
1.234568e+12
9405090880.5
9.405091e+19
9.40509e+119
- 1 回答
- 0 關(guān)注
- 132 瀏覽
添加回答
舉報(bào)