当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript Round 函数

VBScript
VBScript 介绍
如何使用 VBScript
VBScript 放置
VBScript 变量
VBScript 程序
VBScript 条件语句
VBScript 循环声明
VBScript 摘要
VBScript 实例
VBScript 函数
VBScript 关键字

VBScript Round 函数


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 162 ::
收藏到网摘: n/a

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 函数返回整数。

实例 1

dim x
x=24.13278
document.write(Round(x))
输出:
24

实例 2

dim x
x=24.13278
document.write(Round(x,2))
输出:
24.13

评论 (0) All

登陆 | 还没注册?