lua math.random() math.random([n [,m]])用法:1.无参调用,产生[0, 1)之间的浮点随机数。 2.一个参数n,产生[1, n]之间的整数。 3.两个参数,产生[n, m]之间的整数。math.randomseed(n)用法:接收一个整数n作为随即序列的种子。例:math.randomseed(os.time())for i=0, 10... lua 2023-08-25 65 点赞 0 评论 98 浏览