w3ajay

tally tutorial point, ms word 2013, ms excel 2013, ms powerpoint 2010,ccc question with answer in hindi 2021, Tally Prime in hindi , tally prime,Python,in python,programming in python,python

Friday, December 27, 2019

C Program to find LCM of two numbers






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;
  printf("Enter two integers\n");
  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 ,कमेंटसब्सक्राइब   जरुर करे जिससे हम आपके 
            लिए ऐसे ही अच्छे से अच्छे पोस्ट लाते  रहे 
अगर आपके पास कोई प्रश्न हो तो कमेंट बॉक्स में उस प्रश्न जरुर लिखे 

              धन्यवाद !

1 comment:

for more information please share like comment and subscribe