地板函数:
math.floor(4.9)=4


天花板函数:
math.ceil(4.1)=5



四舍五入:
round(4.5)=4
round(4.6)=5

相关文章: