赞
踩
使用情况:
遇到题目或需求四舍五入的情况,此时使用round()函数
使用用法:
对于小数而言,round()函数仅仅保留到整数位,即仅仅对小数点后一位四舍五入。
使用用例:
round(1.5)=2.000000
round(1.56)=2.000000
round(-1.5)=-2.000000
round(-1.56)=-2.000000
round()函数公式:
round()函数原理为
x=(int)(x+0.5)公式,故可以自己写出round()函数
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。