Question: Make a java program called Numbers.java with the following methods: gcd(int,int) - determines the greatest common divisor of the two numbers. Ex. gcd(210,40) is 10
Make a java program called Numbers.java with the following methods:
gcd(int,int) - determines the greatest common divisor of the two numbers. Ex. gcd(210,40) is 10
lcd(int,int) - determines the least common divisor of the two numbers. Ex. lcd(210,40) is 2
max(int,int) - determines the higher value of the two numbers. Ex. lcd(210,40) is 210
min(int,int) - determines the lower value of the two numbers. Ex. lcd(210,40) is 40
sum(int,int) - returns the sum of the two numbers. Ex sum(210,40) is 250
main() - lets the user input two numbers and output the gcd , lc , max , min and sum
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
