1. 用 python语言编写程序。找出三位数中能被17整除的数逐行输出,并统计个数,最后输出总个数
n = 0
for i in range(100,1000):
if i%17 == 0:
print i
n = n + 1
print n
答案是53个