利用python编写程序计算100到1000之间共有多少能被37整除的数,并输出这些数?

如题所述

for i in range(100, 1001):
if i % 37 == 0:

print(i)
温馨提示:答案为网友推荐,仅供参考
相似回答