function rnd(max) --lua的第1次random数不靠谱,取第3次的靠谱local ret=0 math.randomseed(os.time()) for i=1,3 do n = math.random(max) ret=n ...
確定! 回上一頁