用vb输出100-10000之间能够同时被3.5.7整除的所有数,每行输出5个

2025-04-05 08:53:38
推荐回答(1个)
回答1:

total=0
for i=100 to 10000
if i mod 3=0 and i mod 5=0 and i mod 7=0 then
print i;" ";
total=total+1
if total mod 5=1 then print
end if
next i