方法介绍
方法名称:e为底x次方值
语法:math.exp(number)
参数说明:number可以是任意数值表达式
返回值
浮点型:返回e为底number次方值
方法例子
local ret = math.exp(2)
print(ret)