for i=1,100 do if math.floor(i/5)==i/5 then print(i) endend或者:for i=1,100 do if math.fmod(i,5)==0 then print(i) endend