#KOBCI_AQOONTAAD
Finding the Highest and Lowest Values in a Numeric Array in Java:
First, we copy the value in the first array element to the variable max. Then the loop compares all of the remaining array elements, beginning at subscript 1, to the value in max. Each time it finds a value in the array that is greater than the max, it copies that value to the max. When the loop has finished, the max will contain the maximum value in the array.