编写一个程序,找出能被2,3,5整除时余数为1的最小的10个自然数

问题描述:

编写一个程序,找出能被2,3,5整除时余数为1的最小的10个自然数

i=1
n=1
while nif 2 mod i=1 and 3 mod i=1 and 5 mod i=1 then
print i
n=n+1
endif
i=i+1
wend
end

30n+1
31
61
91
121
151
181
211
241
271
301