1. 用 python語言編寫程序。找出三位數中能被17整除的數逐行輸出,並統計個數,最後輸出總個數
n = 0
for i in range(100,1000):
if i%17 == 0:
print i
n = n + 1
print n
答案是53個