Math. round 방법
java. lang. Math 클래스 는 두 개의 round () 방법 이 있 습 니 다. 정 의 는 다음 과 같 습 니 다.
public static int round(float);
public static long round(double);
그것들 은 모두 정 수 를 되 돌려 주 고 반올림 으로 연산 을 하 며 연산 규칙 은 다음 과 같다.
(1). 만약 에 매개 변수 가 정수 라면 소수점 뒤에 사사사오입 을 사용 하고 소수점 뒤에 > = 0.5 면 정수 부분 에 1 을 추가 합 니 다. 그렇지 않 으 면 소수점 뒤의 데 이 터 를 버 립 니 다.
(2). 매개 변수 가 음수 라면 소수점 뒤의 < - 0.5 이면 음수 정수 부분 에 - 1 을 더 하지 않 으 면 소수점 뒤의 데 이 터 를 버린다.
테스트 코드:
public class Main {
public static void main(String[] args) {
System.out.println("Math.round(1.4):"+Math.round(1.4));
System.out.println("Math.round(1.5):"+Math.round(1.5));
System.out.println("Math.round(1.6):"+Math.round(1.6));
System.out.println("Math.round(-1.4):"+Math.round(-1.4));
System.out.println("Math.round(-1.5):"+Math.round(-1.5));
System.out.println("Math.round(-1.6):"+Math.round(-1.6));
}
}
출력:
Math.round(1.4):1
Math.round(1.5):2
Math.round(1.6):2
Math.round(-1.4):-1
Math.round(-1.5):-1
Math.round(-1.6):-2
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.