A Program to Calculate the LCM of Two Integers
In this example, we are giving a program to calculate the LCM(Lowest common multiple) of given two integers.
Program to calculate the LCM:
#include <iostream>
using namespace std;
int main()
{
int n1, n2, i, gcd, lcm;
cout << "Enter two positive integers: ";
cin >> n1 >> n2;
for(i=1; i <= n1 && i <= n2; ++i)
{
if(n1%i==0 && n2%i==0)
gcd = i;
}
lcm = (n1*n2)/gcd;
cout << "LCM = " << lcm;
return 0;
}
Output:
Enter two positive integers: 12 15 LCM = 60