Chinaunix首页 | 论坛 | 博客
  • 博客访问: 223243
  • 博文数量: 68
  • 博客积分: 3120
  • 博客等级: 中校
  • 技术积分: 715
  • 用 户 组: 普通用户
  • 注册时间: 2008-03-08 09:53
文章分类
文章存档

2012年(29)

2011年(3)

2010年(18)

2009年(18)

我的朋友

分类: C/C++

2011-04-26 22:13:27

问题:

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.


答案:233168

#include

int main(void)
{
        int sum=0, i=0, k=1000;

        for(i=3; i                sum+=i;

        for(i=5; i        if(i%3!=0)
                sum+=i;
       
        printf("The answer is %d .\n", sum);
        return 0;
}





阅读(885) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~