자바 의 반올림 규칙
8382 단어 자바
Math.ceil()
상 향 조정x
에 대해 Math.ceil(x)
은 x
보다 크 거나 같은 정 수 를 나타 낸다.예시:System.out.println(Math.ceil(10)); // 10.0
System.out.println(Math.ceil(10.5)); // 11.0
System.out.println(Math.ceil(-10.5)); // -10.0
주의:마이너스 반 축 에 서 는 잘 모 르 는 사람 이 있 을 수 있 습 니 다.우 리 는 수학 적 비교
-10 > -10.5
,즉 -10
은 -10.5
의 상한 선 입 니 다.Math.floor()
아래로 정정x
,Math.floor(x)
은 x
의 정수 보다 작 거나 같 음 을 나타 낸다.예시:System.out.println(Math.floor(10)); // 10.0
System.out.println(Math.floor(10.5)); // 10.0
System.out.println(Math.floor(-10.5)); // -11.0
Math.round()
사사 육 입 오 쌍x
,Math.round(x)
은 Math.floor(x + 0.5)
이 라 고 표시 합 니 다.예 를 들 어 System.out.println(Math.round(10.4)); // 10
System.out.println(Math.round(10.6)); // 11
System.out.println(Math.round(-10.4)); // -10
System.out.println(Math.round(-10.6)); // -11
System.out.println(Math.round(10.5)); // 11
System.out.println(Math.floor(10.5 + 0.5)); // 11.0
System.out.println(Math.round(-10.5)); // -10
System.out.println(Math.floor(-10.5 + 0.5)); // -10.0
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.