Java Program - Find LCM of Two Numbers
LCM stands for Least Common Multiple. The LCM of two numbers is the smallest number that can be divided by both numbers.
For example - LCM of 20 and 25 is 100 and LCM of 30 and 40 is 120.
Mathematically, LCM of two numbers (a and b) can be expressed as below:
a x b = LCM(a, b) x GCD(a, b) LCM(a, b) = (a x b) / GCD(a, b)
Method 1: Using For Loop to find GCD and LCM of two numbers
In the example below, for loop is used to iterate the variable i from 1 to the smaller number. If both numbers are divisible by i, then it modifies the GCD and finally gives the GCD of two numbers. GCD of two numbers is then used to calculate LCM of two numbers.
public class MyClass { public static void main(String[] args) { int x = 20; int y = 25; int gcd = 1; int temp, lcm; if (x > y) { temp = x; x = y; y = temp; } for(int i = 1; i < (x+1); i++) { if (x%i == 0 && y%i == 0) gcd = i; } lcm = (x*y)/gcd; System.out.println("LCM of "+ x +" and "+ y +" is: "+ lcm); } }
The above code will give the following output:
LCM of 20 and 25 is: 100
Method 2: Using While Loop to find GCD and LCM of two numbers
In the example below, larger number is replaced by a number which is calculated by subtracting the smaller number from the larger number. The process is continued until the two numbers become equal which will be GCD of two numbers. GCD of two numbers is then used to calculate LCM of two numbers.
public class MyClass { public static void main(String[] args) { int p, q, x, y, lcm; p = x = 20; q = y = 25; while (x != y) { if (x > y) x = x - y; else y = y - x; } lcm = (p*q)/x; System.out.println("LCM of "+ p +" and "+ q +" is: "+ lcm); } }
The above code will give the following output:
LCM of 20 and 25 is: 100
Method 3: Using the recursive function to find GCD and LCM of two numbers
In the example below, recursive function is used which uses Euclidean algorithm to find GCD of two numbers which is further used to calculate LCM of two numbers.
public class MyClass { static int gcd(int x, int y) { if (y == 0) return x; return gcd(y, x%y); } public static void main(String[] args) { int x = 30; int y = 40; int lcm = (x*y)/gcd(x,y); System.out.println("LCM of "+ x +" and "+ y +" is: "+ lcm); } }
The above code will give the following output:
LCM of 30 and 40 is: 120
Recommended Pages
- Java Program - To Check Prime Number
- Java Program - Bubble Sort
- Java Program - Selection Sort
- Java Program - Maximum Subarray Sum
- Java Program - Reverse digits of a given Integer
- Java - Swap two numbers
- Java Program - Fibonacci Sequence
- Java Program - Insertion Sort
- Java Program - Find Factorial of a Number
- Java Program - Find HCF of Two Numbers
- Java Program - To Check Whether a Number is Palindrome or Not
- Java Program - To Check Whether a String is Palindrome or Not
- Java Program - Heap Sort
- Java Program - Quick Sort
- Java - Swap Two Numbers without using Temporary Variable
- Java Program - To Check Armstrong Number
- Java Program - Counting Sort
- Java Program - Radix Sort
- Java Program - Find Largest Number among Three Numbers
- Java Program - Print Floyd's Triangle