math.ceil
←
math
型:function
code:Lua
math.ceil(x)
table:
型 説明
#1
number
戻り値 number
$ \lceil x \rceil
(天井関数) すなわち、x以上の最小の整数を返す
Lua標準では四捨五入関数は提供されていない
math.floor
を用い
math.floor(x+0.5)
とすること
関連項目
math.floor