标签:
math.randomseed(tostring(os.time()):reverse():sub(1, 6)) local sum1=0 local sum2=0 local sum3=0 local sum4=0 for i=1,100 do local num=math.random(1,4) if math.ceil(num)==1 then sum1=sum1+1 end if math.ceil(num)==2 then sum2=sum2+1 end if math.ceil(num)==3 then sum3=sum3+1 end if math.ceil(num)==4 then sum4=sum4+1 end end print(sum1) print(sum2) print(sum3) print(sum4)
标签:
原文地址:http://www.cnblogs.com/yufenghou/p/4471776.html