方法介绍
方法名称:向上取整
语法:math.ceil(number)
参数说明:number可以是任意有效的数值表达式
返回值
整数型:返回不小于number的最大整数
方法例子
local ret = math.ceil(0.5)
print(ret)