下面哪一个程序可以实现:使用for循环打印出3-30内能被3整除的所有数?( )
for i in range(1,30,3):
print(i)
for i in range(1,30):
for i in range(3,30):
for i in range(3,31,3):