max in 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: java max
public class Test {
public static void main(String args[]) {
System.out.println(Math.max(12.123, 12.456));
System.out.println(Math.max(23.12, 23.0));
}
}
Example 3: max_value in java
(stores the maximum possible value for any integer variable)
public static void main(String[] arg)
{
System.out.println("Integer.MAX_VALUE = "
+ Integer.MAX_VALUE);
}
}
Any integer variable cannot store any value beyond this limit