C++ program to find LCM of two numbers
Hello friends today we write code for Find LCM of two numbers in C++.#include<iostream.h>
#include<conio.h>
using namespace std;
int main()
{
int n1, n2, max;
cout << "Enter two numbers: ";
cin >> n1 >> n2;
// maximum value between n1 and n2 is stored in max
max = (n1 > n2) ? n1 : n2;
do
{
if (max % n1 == 0 && max % n2 == 0)
{
cout << "LCM = " << max;
break;
}
else
++max;
} while (true);
getch();
}
No comments :
Post a Comment