C++ program to find HCF and LCM of two numbers


Write a c++ program to find LCM of two numbers




# include <iostream>
# include <string >
using namespace std;
int main()
{
int a,b,c;
cout<< "Enter two nos :"<<endl;
cout<<endl;
cout<< "Enter first no. : ";
cin>>a;
cout<< "Enter sec. no. : ";
cin>>b;
c=a*b;
while(a!=b)
{
if(a>b)
a=a-b;
else
b=b-a;
}
cout<< "HCF = " << a<<endl;
cout<< "LCM = " << c/a<<endl;
return 0;
}


---------------------------------------------------------------------------------------------


---------------------------------------------------------------------------------------------













---------------------------------------------------------------------------------------------


---------------------------------------------------------------------------------------------

---------------------------------------------------
Write a c++ program to find LCM of two numbers 
I want a C++ program to find LCM and HCF of two
Find hcf and lcm using recursive technique
How To write a c program to calculate the lcm and hcf
LCM And HCF C++.Program to find HCF and LCM

Comments

  1. I don't quite understand why this program works. Please explain the logic behind this.

    ReplyDelete

Post a Comment