Math. round 방법

1195 단어 자바Mathround
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

좋은 웹페이지 즐겨찾기