方法介绍
方法名称:开根号
语法:math.sqrt(number)
参数说明:number可以是任意的数值表达式
返回值
浮点型:返回number的开根号值
方法例子
local r = math.sqrt(2.0)
print(r)