机智水壶

文章
6
资源
0
加入时间
3年0月9天

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...