VB中关于小数位显示问题
发布网友
发布时间:2024-10-24 00:29
我来回答
共3个回答
热心网友
时间:2024-11-09 22:17
Function GetFormatString(n)
If Int(n) = n Then
s = "#"
Else
s = "0.0"
End If
GetFormatString = Format(n, s)
End Function
private Sub Form_Load()
MsgBox GetFormatString(0.1)
MsgBox GetFormatString(1.1)
MsgBox GetFormatString(11)
End Sub
热心网友
时间:2024-11-09 22:11
请使用Double类型,而不要用Long类型(Long是整数型)
热心网友
时间:2024-11-09 22:13
Dim i As Double
i = 0.111111111111
Print Format(i, "0.################")