编写算法程序,编出1至100(包括1和100)内能被7整除的所有整数

问题描述:

编写算法程序,编出1至100(包括1和100)内能被7整除的所有整数

for i=1 to 100
if i mod 7=0 then print i
next