当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript Cos 函数
The Cos function returns the cosine of a specified number (angle).
Cos 函数可返回某个角的余弦值。
Cos(number) |
参数 | 参数 |
---|---|
number | Required. A numeric expression that expresses an angle in radians 必选项。number 参数可以是任何将某个角表示为弧度的有效数值表达式 |
document.write(Cos(50.0)) 输出: 0.964966028492113 |
document.write(Cos(-50.0)) 输出: 0.964966028492113 |