VB用Format 函數(shù)即可實現(xiàn)。
我們提供的服務(wù)有:成都網(wǎng)站設(shè)計、成都網(wǎng)站制作、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、新豐ssl等。為數(shù)千家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的新豐網(wǎng)站制作公司
Format 函數(shù),返回 Variant (String),其中含有一個表達(dá)式,它是根據(jù)格式表達(dá)式中的指令來格式化的。
Print Format(3.1415926, "#.##")
*#:表示一個數(shù)字位。#的個數(shù)決定了顯示區(qū)段的長度。如果要顯示的數(shù)值的位數(shù)小于格式字符串指定的區(qū)段長度,則該數(shù)值靠區(qū)段的左端顯示。如果要顯示的數(shù)值的位數(shù)大于指定的區(qū)段長度,則數(shù)值照原樣顯示。 要顯示多位,只需要設(shè)置數(shù)字位數(shù)即可,例如:
Print format(3.14159262654321,”#.#######”)
顯示:3.1415926
'這一個題我有答過了??梢钥次一卮鸬逆溄印?/p>
'使用Format返回指定的格式
Dim?Numd?As?Double?=?66.6666666666
Label1.Text?=?Format(Numd?,?"#.#####")?'#.#?可自定格式化顯示長度。
用這個函數(shù)把
Math.Round 方法 (Decimal, Int32)
將小數(shù)值舍入到指定精度。
命名空間: System
程序集: mscorlib(在 mscorlib.dll 中)
語法
Visual Basic(用法)
Dim d As Decimal
Dim decimals As Integer
Dim returnValue As Decimal
returnValue = Math.Round(d, decimals)
參數(shù)
d
類型:System.Decimal
要舍入的小數(shù)。
decimals
類型:System.Int32
返回值中的小數(shù)位數(shù)(精度)。
返回值
類型:System.Decimal
精度等于 decimals,最接近 d 的數(shù)字。
Math.Round(3.4666666, 4) 結(jié)果是 3.4667.
VB用Format 函數(shù)來實現(xiàn)。
Format 函數(shù),返回 Variant (String),其中含有一個表達(dá)式,它是根據(jù)格式表達(dá)式中的指令來格式化的。
Private?Sub?Command3_Click()
Print?Format(5?/?256,?"#.##")
End?Sub
舉個例子
Dim a As Decimal = 1.999
Dim b As Decimal = Math.Round(a, 2)
結(jié)果為b = 2.00
四舍五入保留兩位