math函式館中的一個函式,math.floor(x)返回小於參數x的最大整數,即對浮點數向下取整。x[]的取值。
math例子
print("floorTest 8 : ".. math.floor(8)) 結果: 8.0
print("floorTest 8.5: ".. math.floor(8.5))結果: 8.0
print("floorTest -8: ".. math.floor(-8))結果: -8.0
print("floorTest -8.5: ".. math.floor(-8.5))結果: -9.0