首页 > 其他 > 详细

001. 3和5的倍数

时间:2014-05-23 01:41:56      阅读:354      评论:0      收藏:0      [点我收藏+]

Problem 1: Multiples of 3 and 5

If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.

Find the sum of all the multiples of 3 or 5 below 1000.


意思就是让你算出在1000以下的3或者5的倍数之和。

我的python代码:

print sum(x for x in range(1000) if x%3==0 or x%5==0)

很简单!

001. 3和5的倍数,布布扣,bubuko.com

001. 3和5的倍数

原文:http://blog.csdn.net/hackingwu/article/details/26491909

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!