当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript Round 函数
The Round function rounds a number.
Round 函数可返回按指定位数进行四舍五入的数值
Round(expression[,numdecimalplaces]) |
参数 | 描述 |
---|---|
expression | Required. The numeric expression to be rounded 必选项。 数值表达式 被四舍五入 |
numdecimalplaces | Optional. Specifies how many places to the right of the decimal are included in the rounding. Default is 0 可选项。数字表明小数点右边有多少位进行四舍五入。如果省略,则 Round 函数返回整数。 |
dim x 输出: 24 |
dim x 输出: 24.13 |