Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
to find hcf and lcm using constructor in java
#1

Find HCF & LCM of Two Numbers

To find the HCF and LCF of two number in Java Programming, you have to ask to the user to enter the two number, to find the HCF and LCF of the given two number to display the value of the HCF and LCM of the two numbers on the output screen as shown in the following program.

Java Programming Code to Find HCF LCM of Two Numbers

Following Java Program ask to the user to enter any two number to find HCF & LCM, then display the result on the screen :

/* Java Program Example - Find HCF LCM of Two Numbers */

import java.util.Scanner;

public class JavaProgram
{
public static void main(String args[])
{
int a, b, x, y, t, hcf, lcm;
Scanner scan = new Scanner(System.in);

System.out.print("Enter Two Number : ");
x = scan.nextInt();
y = scan.nextInt();

a = x;
b = y;

while(b != 0)
{
t = b;
b = a%b;
a = t;
}

hcf = a;
lcm = (x*y)/hcf;

System.out.print("HCF = " +hcf);
System.out.print("\nLCM = " +lcm);
}
}
When the above Java Program is compile and executed, it will produce the following output:

Java Program find hcf lcm
Same Program in Other Languages

You may also like to learn and practice the same program in other popular programming languages:

C Find HCF LCM
C++ Find HCF LCM
Python Find HCF LCM.
Reply



[-]
Quick Reply

Forum Jump:


Users browsing this thread:
1 Guest(s)

Powered By MyBB, © 2002-2024 iAndrew & Melroy van den Berg.