lua math.floor 实现四舍五入:
lua 中的math.floor函数是向下取整函数。
math.floor(5.123) -- 5
math.floor(5.523) -- 5
用此特性实现四舍五入
math.floor(5.123 + 0.5) -- 5
math.floor(5.523 + 0.5) -- 6
也就是对math.floor函数的参数进行 “+ 0.5” 计算
时间: 2024-10-10 13:19:08
lua math.floor 实现四舍五入:
lua 中的math.floor函数是向下取整函数。
math.floor(5.123) -- 5
math.floor(5.523) -- 5
用此特性实现四舍五入
math.floor(5.123 + 0.5) -- 5
math.floor(5.523 + 0.5) -- 6
也就是对math.floor函数的参数进行 “+ 0.5” 计算