vb.net – 在Visual Basic中舍入一个数字

前端之家收集整理的这篇文章主要介绍了vb.net – 在Visual Basic中舍入一个数字前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个需要向下舍入数字的Visual Basic应用程序,例如,2.556将变为2.55而不是2.26.

我可以使用一个函数来执行此操作,使用以下方法从小数点开始删除2个以上的字符:

Dim TheString As String
TheString = 2.556
Dim thelength = Len(TheString)
Dim thedecimal = InStr(TheString,".",CompareMethod.Text)
Dim Characters = thelength - (thelength - thedecimal - 2)
_2DPRoundedDown = Left(TheString,Characters)

这样做有更好的功能吗?

您可以使用 Math.Floor执行此操作.但是,您需要乘以* 100并除以,因为您无法提供多个数字
Dim theNumber as Double
theNumber = 2.556
Dim theRounded = Math.Sign(theNumber) * Math.Floor(Math.Abs(theNumber) * 100) / 100.0
原文链接:https://www.f2er.com/vb/255353.html

猜你在找的VB相关文章