方法介绍
方法名称:取整数和小数部分
语法:math.modf(number)
参数说明:number可以是任意有效的数值表达式
返回值
数组型:返回小数的整数部分和小数部分
方法例子
local n,m = math.modf(15.7)
print(n.."."..m)