highest number in array java code example
Example 1: max in array java
Integer[] num = { 2, 4, 7, 5, 9 };
int min = Collections.min(Arrays.asList(num));
int max = Collections.max(Arrays.asList(num));
Example 2: how to find the largest integer in java
int a = Integer.MAX_VALUE;
Example 3: java find biggest number in array
for (int counter = 1; counter < decMax.length; counter++)
{
if (decMax[counter] > max)
{
max = decMax[counter];
}
}
System.out.println("The highest maximum for the December is: " + max);