Advertisements
Advertisements
Question
Write a program to find the LCM and GCD of two numbers.
Short Note
Solution
#include<iostream>
using namespace std;
int main ()
{
int a1, b1 lcm, gcd = 1, p;
cout<<"\n Enter 1st no:";
cin>>a1;
cout<<"\n Enter 2nd no:";
cin>>b1;
p = a1*b1;
for(int i = a1; j<=p; i++)
if(i%a1==0) && (i%b1==0)
{
1cm = i;
break;
}
cout<<"L.C.M.="<<1cm<<endl;
gcd = p/LCM;
cout<<"G.C.D="<<gcd;
cin.get();
return ();
}
shaalaa.com
Statements
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
What is the alternate name of the null statement?
In C++, the group of statements should be enclosed within: ______
Identify the odd one from the keywords of jump statements?
What are a null statement and compound statement?
Correct the following code sigment:
if (x = 1)
p = 100;
else
p = 10;
Compare an if and a ? : operator.
Write a program to find sum of the series
S = 1 + x + x2 +..... + xn