울음참고 개발공부
728x90

 

 

자바에서 Math.round(-1.5)는 무엇을 의미합니까?

 

 

 

Math.round(-1.5) 는 주어진 숫자를 반올림한 결과를 반환하는 메서드이다

 

이 경우, '-1.5'는 가장 가까운 정수로 반올림 되어 '-1'이 된다

 

Math.round() 
소수점 이하를 반올림 하여 정수로 반환하는 메서드

 

 

public class Example {
    public static void main(String[] args) {
        double number = -1.5;
        long roundedNumber = Math.round(number);
        System.out.println(roundedNumber); // 출력: -1 type: long
    }
}

 

 

 

 

728x90
profile

울음참고 개발공부

@메각이

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!