int[] /*OR*/ double[] /*OR*/ float[] array_of_numbers = {/*Whatever values you want*/}
/*For this example we're just using a regular integer array*/
int max = 0; /*Important to initialise the max value as ZERO*/
for (int i = 0; i < array_of_numbers.length; i++) {
if(array_of_numbers[i] > max) { /* So now we can make the comparison*/
max = array_of_numbers[i]; /* If larger, make it the new maximum*/
}
}
System.out.println("Maximum value in array: " + max)