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.################")

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com