Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

The following method attempts to returen the median of three integer values, but it contains logic errors. In what cases does the method returen an

The following method attempts to returen the median of three integer values, but it contains logic errors. In what cases does the method returen an incorrect result ? How can the code be fixed?
public static int medianOf3(int n1, int n2, int n3){
if (n1< n2){
if (n2< n3){
return n2;
} else {
return n3;
}
} else {
if (n1< n3){
return n1;
} else {
return n3;
}
}
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions