用for循环语句找出所有能被5整除的两位数for in range( ):if ==0:print(i)
for i in range(10, 100): if i % 5 == 0: print(i)
如果以上回答对您有所帮助,点击一下采纳该答案~谢谢