JavaAlgorithms/Maths/FindMax.java
shellhub 6079b4bc10 * reduce code
* add function overriding
* update test
2020-08-10 16:52:06 +08:00

27 lines
549 B
Java

package Maths;
public class FindMax {
//Driver
public static void main(String[] args) {
int[] array = {2, 4, 9, 7, 19, 94, 5};
assert findMax(array) == 94;
}
/**
* find max of array
*
* @param array the array contains element
* @return max value
*/
public static int findMax(int[] array) {
int max = array[0];
for (int i = 1; i < array.length; ++i) {
if (array[i] > max) {
max = array[i];
}
}
return max;
}
}