四舍五入

语法
round(number,digits)

参数:
number,要四舍五入的数,
digits 是要小数点后保留的位数。
如果 digits 大于 0,则四舍五入到指定的小数位。
如果 digits 等于 0,则四舍五入到最接近的整数。
如果 digits 小于 0,则在小数点左侧进行四舍五入。
如果 round 函数只有参数 numberdigits 默认等于 0。

返回值:四舍五入后的值

举例
round(3.1415926,2)=3.14;
round(3.1415926,3)=3.142;

你可能感兴趣的:(四舍五入)