LCM (Least Common Multiple) of two numbers is the smallest number which can be divided by both numbers.
For example LCM of 15 and 20 is 60 and LCM of 5 and 7 is 35.
#include <stdio.h>
#include<conio.h>
Vode main()
{
int a, b,x,y,i, gcd,lcm;
int a, b,x,y,i, gcd,lcm;
printf("Enter two integers\n");
scanf("%d%d", &a, &b);
scanf("%d%d", &a, &b);
x=a;
y=b;
for (i=1;i<a && i<b; ++i)
{
if(a%i==0 && b%i==0)
{
gcd=i;
}
}
lcm=(x*y)/gcd;
printf("Greatest common divisor of %d and %d = %d\n", x, y, lcm);
getch();
}
}
दोस्तों अगर आपको मेरी यह पोस्ट अच्छी लगी हो तो
प्लीज like , share ,कमेंट, सब्सक्राइब जरुर करे जिससे हम आपके
लिए ऐसे ही अच्छे से अच्छे पोस्ट लाते रहे
अगर आपके पास कोई प्रश्न हो तो कमेंट बॉक्स में उस प्रश्न जरुर लिखे
धन्यवाद !
Super
ReplyDelete