196k views
3 votes
public void adjust(double max, double min, double total, double n) – displays the value of (total – max – min) / (n – 2.0) consider the call adjust(25.0, 5.0, 60.0, 5.0), which appears in a method in the same class. what is printed as a result of the method call?

User Yunus D
by
4.6k points

1 Answer

4 votes
it will be 10.0


track this through the order in the parameter
User Slater Victoroff
by
5.5k points