공부
[Java] Integer.MAX_VALUE & Integer.MIN_VALUE
승가비
2021. 11. 5. 12:41
728x90
https://hydroponicglass.tistory.com/134
[JAVA] 정수의 최대값, 최소값 출력
자바에서 정수의 최대값, 최소값 출력 // java public static void main(String[] args) { System.out.println(Integer.MAX_VALUE); // 2147483647 System.out.println(Integer.MIN_VALUE); // -2147483648 } 32비..
hydroponicglass.tistory.com
728x90