BT编程语言文档
floor
返回小于或等于指定数字的最大整数语法 math.floor(x: Int|Float)
x:必填,接受一个数字
// 返回:2 math.floor(2.6) // 返回:-3 math.floor(-2.6) // 返回:2 math.floor(2.4)语法 math.floor(x: Int|Float)
x:必填,接受一个数字
// 返回:2 math.floor(2.6) // 返回:-3 math.floor(-2.6) // 返回:2 math.floor(2.4)