[JAVA] 소수점 올림, 버림, 반올림, 절대값

Math.floor(a) //버림
Math.abs(a) //절대값
Math.ceil(a) //올림
Math.round(a) //반올림
다음과 같이 사용 int b = (int) Math.ceil(a);

댓글