Java Program to find LCM

You are Here:

What is Least Common Multiple?

A smallest common multiple of two or more integers.

In general, Least Common Multiple (LCM) is otherwise called as Lowest Common Multiple (LCM) or Smallest Common Multiple (SCM)

Tips: It is recommended to use our online LCM calculator for better understanding.

Examples

The following table provides few examples of LCM of the given numbers.

NumbersLCM
4, 1020
6, 530
15, 30 , 4590

LCM of Two Numbers

n the following example, we will find the LCM of the given two numbers (45, 90).

Example

Java Compiler
public class myClass { public static void main(String[] args) { int num1 = 45; int num2 = 90; int max; max = (num1 > num2) ? num1 : num2; // Always true while(true) { if((max % num1 == 0) && (max % num2 == 0)) { System.out.format("LCM of %d and %d: %d\n", num1, num2, max); break; } ++max; } } }

Output

LCM of 45 and 90: 90

LCM of any Two Given Numbers

In the following example, we will find the LCM of any two given numbers.

Example

Java Compiler
import java.util.Scanner; public class myClass { public static void main(String[] args) { int num1, num2, max; Scanner reader = new Scanner(System.in); System.out.print("Enter positive (int) num1 = "); num1 = reader.nextInt(); System.out.print("Enter positive (int) num2 = "); num2 = reader.nextInt(); max = (num1 > num2) ? num1 : num2; // Always true while(true) { if((max % num1 == 0) && (max % num2 == 0)) { System.out.format("\nLCM of %d and %d: %d\n", num1, num2, max); break; } ++max; } } }

Output

Enter positive (int) num1 = 2 Enter positive (int) num2 = 9 LCM of 2 and 9: 18

Reminder

Hi Developers, we almost covered 90% of String functions and Interview Question on Java with examples for quick and easy learning.

We are working to cover every Single Concept in Java.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author