VBScript Round 函數(shù)

2022-08-19 09:56 更新

在使用 VBScript 的時(shí)候,如果需要對數(shù)字進(jìn)行四舍五入,那么請使用 Round 函數(shù)!


VBScript 參考手冊完整的 VBScript 參考手冊

Round 函數(shù)對數(shù)字進(jìn)行四舍五入。

語法

Round(expression[,numdecimalplaces])

參數(shù) 描述
expression 必需。需要被四舍五入的數(shù)值表達(dá)式。
numdecimalplaces 可選。規(guī)定對小數(shù)點(diǎn)右邊的多少位進(jìn)行四舍五入。默認(rèn)是 0。

實(shí)例

實(shí)例 1

<script type="text/vbscript">

document.write(Round(24.13278) & "<br />")
document.write(Round(24.75122))

</script>

以上實(shí)例輸出結(jié)果:

24
25

嘗試一下 ?

實(shí)例 2

如何對一個(gè)數(shù)字進(jìn)行四舍五入,保留 2 位小數(shù):

<script type="text/vbscript">

document.write(Round(24.13278,2))

</script>

以上實(shí)例輸出結(jié)果:

24.13

嘗試一下 ?

VBScript 參考手冊完整的 VBScript 參考手冊
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)