我有一个双倍,小数位不固定(8 - ?)
我想将小数位数固定为6(例如:1,234567)。
这是我的双重身份:
CStr(score)
我想这很简单:P
答案 0 :(得分:3)
请改为尝试:
score.ToString("0.000000")
答案 1 :(得分:2)
您还可以Math.Round(3.44, 1) 'Returns 3.4.
答案 2 :(得分:0)
在小数点之后添加零,如此<
Dim tot as String
Dim totAmt as Double
totAmt = 10.10
tot = String.Format(“{0:00.000}”,totAmt)
OutPut:10.100
小数点后删除零点如此<
totAmt = 10.750
TOT = Math.Round(totAmt,2)
输出:10.75
Sloved