Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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. I have the following code but the answer does not match.

#include<stdio.h>
int main()
{
    long unsigned int i,sum=0;
    clrscr();
    for(i=0;i<=1000;i++)
    {
        if((i%5==0)||(i%3==0))
        {
            sum=sum+1;
        }
    }
    printf("%d\n",sum);
    getchar();
    return 0;
}
share|improve this question
7  
Maybe you should link to Project Euler's first problem? ( projecteuler.net/index.php?section=problems&id=1 ) – pmg Oct 2 '10 at 23:19

5 Answers

up vote 8 down vote accepted

Two things:

  • you're including 1000 in the loop, and
  • you're adding one to the sum each time, rather than the value itself.

Change the loop to

for(i=0;i<1000;i++)

And the sum line to

sum=sum+i;
share|improve this answer
Its printing some garbage.I even changed int to long int – Ak1to Oct 2 '10 at 23:20
I get 233168 once those changes are in place, and a warning about the format (see Hugo's Answer). Is that the right value? – martin clayton Oct 2 '10 at 23:24
1  
yes, that's the right answer (according to Project Euler). – Steve Jessop Oct 2 '10 at 23:53

Perhaps you should do

sum += i // or sum = sum + i

instead of

sum = sum + 1

Additionally, be careful when printing long unsigned ints with printf. I guess the right specifier is %lu.

share|improve this answer
was forgetting %lu thanks – Ak1to Oct 2 '10 at 23:30

It should be sum = sum + i instead of 1.

share|improve this answer

Here's a python one-liner that gives the correct answer (233168):

reduce( lambda x,y: x+y, [ x for x in range(1000) if x/3.0 == int( x/3.0 ) or x/5.0 == int( x/5.0 ) ] )
share|improve this answer
#include<stdio.h>
#include<time.h>
int main()
{
    int x,y,n;
    int sum=0;
    printf("enter the valeus of x,y and z\n");
    scanf("%d%d%d",&x,&y,&n);
    printf("entered   valeus of x=%d,y=%d and z=%d\n",x,y,n);
    sum=x*((n/x)*((n/x)+1)/2)+y*((n/y)*((n/y)+1)/2)-x*y*(n/(x*y))*((n/(x*y))+1)/2;
    printf("sum is %d\n",sum);
    return 0;
}
// give x,y and n  as 3 5 and 1000
share|improve this answer
This solution is generic to all case. – anil kumar Apr 3 at 10:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.