project euler之3和5的倍数

count = 0
for i in range(1,1000):
    if i % 3 == 0 or i %5 ==0:
        count = count+i
print(count)

  

posted @ 2018-07-06 16:08  托月的成长历程  阅读(116)  评论(0编辑  收藏  举报