VBScript Round 函数

定义和用法

Round 函数可对数字进行四舍五入。

语法

  1. Round(expression[,numdecimalplaces])
参数 描述
expression 必需的。需要被四舍五入的表达式。
numdecimalplaces 可选的。规定对小数点右边的多少位进行四舍五入。默认是 0。

实例

例子 1

  1. dim x
  2. x=24.13278
  3. document.write(Round(x))

输出:

  1. 24

例子 2

  1. dim x
  2. x=24.13278
  3. document.write(Round(x,2))

输出:

  1. 24.13