Question: Write Java ( define ) a public static method named middle, that takes three arguments ( all arguments will be ints ) . When this

Write Java (define) a public static method named middle, that takes three arguments (all arguments will be ints). When this method is called, it should return (as an int) the argument value that would be in the middle if the values were sorted.
Examples:
middle(1,2,3) will return 2 middle(2,3,1) will return 2 middle(3,2,3) will return 3
You may wish to write some additional code to test your method

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 Programming Questions!