Pregunta de entrevista de LatentView Analytics

Write a code for calculating LCM and GCD

Respuestas de entrevistas

Anónimo

12 sept 2014

#include int main() { int a, b, x, y, t, gcd, lcm; printf("Enter two integers\n"); scanf("%d%d", &x, &y); a = x; b = y; while (b != 0) { t = b; b = a % b; a = t; } gcd = a; lcm = (x*y)/gcd; printf("Greatest common divisor of %d and %d = %d\n", x, y, gcd); printf("Least common multiple of %d and %d = %d\n", x, y, lcm); return 0; }

1

Anónimo

22 ago 2014

It could have been better had the interviewers lets us knew for which project we are being interviewed on.