一、数学库
--获取系统时间 print(os.time()) --调用math.sin函数 print(math.sin(30)) --[[将角度转换成弧度 math.deg(x) --将弧度转换成角度 math.rad(x) ]] --[[指数函数、对数函数 math.exp(x) math.log(x) ]] --取整函数 local n = 3.14 print(math.floor(n)) --向下取整 print(math.ceil(n)) --向上取整 --取最大值、最小值 print(math.max(3, 5, 2, 1)) print(math.min(3, 5, 2, 1)) --生成随机数 print(math.random()) --0~1之间的随机数 print(math.random(1)) --1~6之间的随机数 print(math.random(1, 4)) --1~4之间的随机数 math.randomseed(os.time())
二、table库
时间: 2024-11-10 07:50:53