lua编程语言算出从1到100能被5整除的数代码怎么写?

2024-11-28 08:02:00
推荐回答(1个)
回答1:

for i=1,100 do
if math.floor(i/5)==i/5 then
print(i)
end
end

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