어제 오늘 내일

[Java] 정수의 최대값, 최소값 출력하기 본문

IT/Java

[Java] 정수의 최대값, 최소값 출력하기

hi.anna 2021. 5. 23. 09:08

 

int의 Wrapper Class인 Integer 클래스를 이용하면

정수의 최대값과 최소값을 출력할 수 있습니다.

 

  • static int Integer.MAX_VALUE
  • static int Integer.MIN_VALUE

 

Integer.MAX_VALUE, Integer.MIN_VALUE 필드는 정수의 최대값과 최소값을 표현하기 때문에,

이것으로 정수의 최대값과 최소값을 출력할 수 있습니다.

 

 

 

  예제  

public class MinMaxInteger {
    public static void main(String[] args) {

        System.out.println(Integer.MIN_VALUE);  // -2147483648
        System.out.println(Integer.MAX_VALUE);  // 2147483647

    }
}

정수의 최대값은 231-1(2,147,483,647)이고,

정소의 최소값은 -231(-2,147,483,648)입니다.

 

 

 

반응형
Comments