728x90

 

32비트에서 INT.정수 범위는 -2,147,483,647 ~ 2,147,483,648 이다..

 

public static void main(String[] args) {
	System.out.println(Integer.MAX_VALUE); // 최대값
	System.out.println(Integer.MIN_VALUE); // 최소값
}
728x90