= "0.0 이상에서 1.0 미만" 의 double형 실수 값을 반환합니다.
즉, 0.0 은 나올 수 있지만 1.0 은 나올 수 없습니다.
Math.ceil()
= 올림.
Math.floor()
= 내림.
Math.round()
= 반올림.
[ 예 제 ]
Math.ceil(1.4) = 2
Math.ceil(1.6) = 2
Math.ceil(-1.4) = -1
Math.ceil(-1.6) = -1
Math.floor(1.4) = 1
Math.floor(1.6) = 1
Math.floor(-1.4) = -2
Math.floor(-1.6) = -2
Math.round(1.4) = 1
Math.round(1.6) = 2
Math.round(-1.4) = -1
Math.round(-1.6) = -2
Math.ceil(1.6) = 2
Math.ceil(-1.4) = -1
Math.ceil(-1.6) = -1
Math.floor(1.4) = 1
Math.floor(1.6) = 1
Math.floor(-1.4) = -2
Math.floor(-1.6) = -2
Math.round(1.4) = 1
Math.round(1.6) = 2
Math.round(-1.4) = -1
Math.round(-1.6) = -2
댓글 없음:
댓글 쓰기