Lua 随机数算法用的是libc 中的 rand , 也就是LCG。 ... local seed = 123456 for i=1,2 do math.randomseed(seed + (i-1)/10) local num = {} for ...
確定! 回上一頁