Python求1000之內全部3或5的倍數的和。

1 a=0 2 for n in range(1,1000): 3 if n%3==0 or n%5==0: 4 a=a+n 5 print(a) 運行結果:html 233168post 轉載於:https://www.cnblogs.com/pangzx/p/9222191.htmlspa
相關文章
相關標籤/搜索