Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a static method named median that accepts three integers as parameters and that returns the middle value of the three. For example, median(7, 3,
Write a static method named median that accepts three integers as parameters and that returns the middle value of the three. For example, median(7, 3, 9) returns 7 and median(29, -14, 11) returns 11.
Test your code with the following class:
public class TestMedian {
public static void main(String[] args) {
System.out.println(median(7, 3, 9)); // 7
System.out.println(median(29, -14, 11)); // 11
System.out.println(median(752, 64, 121)); // 121
}
// your code goes here
}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started