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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!