find largest value in int array java code example
Example 1: how to find the largest integer in java
int a = Integer.MAX_VALUE;
Example 2: 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);