Integer: MIN_VALUE : Integer « java.lang « Java by API
- Java by API
- java.lang
- Integer
Integer: MIN_VALUE
public class Main {
public static void main(String[] arg) {
System.out.println(Integer.MAX_VALUE);
System.out.println(Integer.MIN_VALUE);
}
}
Related examples in the same category