码迷,mamicode.com
首页 > 其他好文 > 详细

001. 3和5的倍数

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

标签:style   c   tar   ext   http   color   

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的倍数

标签:style   c   tar   ext   http   color   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!