largest int java code example
Example 1: java max int value
public class Test
{
public static void main(String[] args)
{
System.out.println(Integer.MIN_VALUE);
System.out.println(Integer.MAX_VALUE);
System.out.println(Integer.MIN_VALUE - 1);
System.out.println(Integer.MAX_VALUE + 1);
}
}
Example 2: integer max value representation java
Integer.MAX_VALUE
Example 3: how to find the largest integer in java
int a = Integer.MAX_VALUE;
Example 4: how to find the largest number in java
int number1 = 2;
int number2 = 1;
System.out.println("The largest number is " + Math.max(number1, number2));
System.out.println("The smallest number is " + Math.min(number1, number2));