Programming Code Center(PCC)
[CPP]

(PCC)::[How-to-write-CPP-Program-to-Find-LCM]::[cpp]

File Name : LCM.cpp

//Example : Find LCM
#include <iostream>
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);
    
    return 0;
}

Output :

LCM.jpg