Solved

Write a Method to Compute and Return the Value of Max

Question 22

Essay

Write a method to compute and return the value of max - min where max is the largest element of an int array and min is the smallest element of an int array. The method is passed the int array and an int value that denotes the number of elements in the array. You may assume that the int array has at least 1 element in it.

Correct Answer:

verifed

Verified

public int computeDifference(int[ ] valu...

View Answer

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions