मराठी

Write a program using method name Glcm(int,int) to find the Lowest Common Multiple (LCM) of two numbers by GCD (Greatest Common Divisor) of the numbers. GCD of two integers is calculated by continued - Computer Applications

Advertisements
Advertisements

प्रश्न

Write a program using method name Glcm(int,int) to find the Lowest Common Multiple (LCM) of two numbers by GCD (Greatest Common Divisor) of the numbers. GCD of two integers is calculated by continued division method. Divide the larger number by the smaller, the remainder then divides the previous divisor. The process is repeated till the remainder is zero. The divisor then results in the GCD.

LCM = `"product of two numbers"/("GCD")`

कोड लेखन

उत्तर

// LCM = (NUM1 * NUM2) / GCD
import java.util.*;
public class FQ7
{
void Glcm (int n1, int n2)
{ int x, gcd = 0, 1cm;
x = Math.min(n1, n2);
for (int i = 1; i <= x; i++)
{if (n1 % i == 0 && n2 % i == 0)
gcd = i; // the last divisor gives the gcd
}
lcm = (n1 * n2) / gcd;
System.out.println("LCM " + 1cm);
}

public static void main(String args[])
{FQ7 qq = new FQ7();
Scanner ob = new Scanner(System.in);
System.out.println("Enter the two numbers for which LCM is required");
qq.Glcm(ob.nextInt(),ob.nextInt());
}}
shaalaa.com
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 5: User - Defined Methods - EXERCISES [पृष्ठ ३३८]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
पाठ 5 User - Defined Methods
EXERCISES | Q VII. 7. | पृष्ठ ३३८
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×