Home / Programs / Calculate LCM using GCD
🚀 Programming Example

Calculate LCM using GCD

👁 191 Views
💻 Practical Program
📘 Step Learning

💻 Program Code

public class Main {
  public static void main(String[] args) {

    int n1 = 72, n2 = 120, gcd = 1;

    for(int i = 1; i <= n1 && i <= n2; ++i) {
      // Checks if i is factor of both integers
      if(n1 % i == 0 && n2 % i == 0)
        gcd = i;
    }

    int lcm = (n1 * n2) / gcd;
    System.out.printf("The LCM of %d and %d is %d.", n1, n2, lcm);
  }
}

                        

🖥 Program Output

The LCM of 72 and 120 is 360.
                            

📘 Explanation

This Java program calculates the Least Common Multiple (LCM) of two numbers using the GCD (Greatest Common Divisor) method.

Here's a breakdown of how the code works:

  1. Initialization:

    • Two integers n1 and n2 are initialized with values 72 and 120 respectively.
    • Another integer gcd is initialized to 1, which will hold the greatest common divisor of n1 and n2.
  2. Finding the Greatest Common Divisor (GCD):

    • A for loop is used to iterate from 1 to the smaller of n1 and n2.
    • Inside the loop, it checks if the current value of i is a factor of both n1 and n2. If it is, then it updates the value of gcd to i.
    • After the loop, gcd will hold the greatest common divisor of n1 and n2.
  3. Calculating the Least Common Multiple (LCM):

    • LCM can be calculated using the formula: LCM = (n1 * n2) / GCD.
    • Using this formula, it calculates the LCM and stores it in the variable lcm.
  4. Output:

    • Finally, it prints the calculated LCM using the printf method.
  5. Output:

    • The program prints out the calculated LCM of n1 and n2 using the printf method.

In summary, this program calculates the LCM of two given numbers (n1 and n2) using the GCD method and then prints the result.

📚 Learning Subject

Master Programming Through Practical Examples

Improve your coding logic, problem-solving skills and programming confidence by practicing real-world examples with explanations.

🎯 How to learn from this example

First understand the algorithm carefully. Then study the program line-by-line and compare it with the output. Finally, review the explanation section to strengthen your logic and programming understanding.

🔥 Practice suggestion

Rewrite the program without looking at the code. Modify values, conditions or logic and run it again. This helps improve confidence and strengthens coding skills much faster.