math.round
支持的语言:
math.round(numericExpression, decimalPlaces)
说明
返回舍入到最接近的整数或指定小数位数的数值。
形参数据类型
NUMBER
返回类型
NUMBER
代码示例
math.round(10.7) // returns 11
math.round(1.2567, 2) // returns 1.25
math.round(0-10.7) // returns -11
math.round(0-1.2) // returns -1
math.round(4) // returns 4, math.round(integer) returns the integer