I am getting wrong result for my LCM program.

Ifirst find gcd of the numbers and then divide the product with gcd.

int gcd(int x, int y)
{
  while(y != 0)
  {
    int save = y;
    y = x % y;
    x = save;
  }
  return y;
}

int lcm(int x, int y)
{
  int prod = x * y;
  int Gcd = gcd(x,y);
  int lcm = prod / Gcd;

  return lcm;
}

Any help much appreciated.

link|improve this question
If you had tested gcd at all, you would have seen that it always returns 0 and the reason for that would have been immediately obvious. Once you had gcd working properly, then would be the time to check that lcm did. This points to a general strategy of software development and debugging. In addition, the fact that this code doesn't even compile is suspicious: how did you get wrong results from it? – Jim Balter Mar 3 '11 at 5:01
Thanks for tips Jim. The code works fine for me now. – user642371 Mar 3 '11 at 5:11
@user642371 In the future, please post your actual code that you have compiled. And responses to comments should contain @name so that the person you are responding to is alerted. Thanks. – Jim Balter Mar 3 '11 at 5:26
feedback

3 Answers

up vote 5 down vote accepted

Your gcd function will always return 0. Change

return y;

to

return x;

Understand the Euclid's algorithm:

RULE 1: gcd(x,0) = x
RULE 2: gcd(x,y) = gcd(y,x % y)

consider x = 12 and y = 18

  gcd (12, 18)
  = gcd (18, 12)  Using rule 2
  = gcd (12,6)    Using rule 2
  = gcd (6, 0)    Using rule 1
  = 6

As you can see when y becomes zero x will be the gcd so you need to return x and not y.

Also while calculating lcm you are multiplying the numbers first which can cause overflow. Instead you can do:

lcm = x * (y / gcd(x,y))

but if lcm cannot fit in an int you'll have to make it long long

link|improve this answer
Thanks for a clear explanation. – user642371 Mar 3 '11 at 5:01
feedback

Problem 1) int gcd = gcd(x,y);

gcd is already defined to be a function. You cannot define a variable with the same name.

Problem 2) Change return y to return x in gcd() otherwise 0 will be returned everytime.

Problem 3) x * y may overflow if x and y are large.

link|improve this answer
Thanks you. Problem 1 was a typo. Problem 2 fixed it. – user642371 Mar 3 '11 at 5:00
1  
If x * y can overflow then so can the result of lcm; it's the size of the type of the lcm function that is the determining factor. This should be written as itype lcm(int x, int y) { return (itype)x / gcd(x, y) * y; } where itype is an integer type large enough to hold any expected result. – Jim Balter Mar 3 '11 at 5:21
feedback

You should return x instead of y in your gcd function.

Also, are you sure the product x*y will always fit into an int? Might be a good idea to use a long long for that as well.

link|improve this answer
Can you explain more ? – user642371 Mar 3 '11 at 5:02
1  
@user642371: It think you already understand why you have to return x and not y. About overflow, suppose both x and y are 2,000,000,000. This fits nicely in an int and their LCM is also 2,000,000,000 which is again no problem. But in the intermediate step you compute x*y and store it in an int. Now, x*y is 2,000,000,000*2,000,000,000 which is 4*10^18. This is too big for an int and will cause an overflow. You will het an erroneous value in prod and dividing it by the gcd will again give you a meaningless value since the original value has been list due to overflow. – MAK Mar 3 '11 at 5:13
Thanks MAK for making it clear. – user642371 Mar 3 '11 at 5:16
2  
@user642371 Note that it is not sufficient to put just the product in a long long; you need to make the type of your lcm function a long long to handle all cases. e.g., lcm(2000000000, 2000000001) is 4000000002000000000, which is too large to fit in an int. – Jim Balter Mar 3 '11 at 5:33
feedback

Your Answer

 
or
required, but never shown

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