자바 round() 메소드


Java Number类Java Number 클래스


rint() 메소드는 가장 가까운 int 또는 long 값을 반환합니다.

Syntax

이 메소드의 구문 형식은 다음과 같습니다.

long round(double d)int round(float f)

Parameters

  • d -- double 또는 float의 기본 데이터 유형

  • f -- float 기본 데이터 유형

반환 값

가장 가까운 int 또는 long 값을 반환하며 메서드는 반환된 데이터 유형을 지정합니다.

Example

public class Test{public static void main(String args[]){double d = 100.675;double e = 100.500;float f = 100;float g = 90f;System.out.println(Math.round(d));System.out.println(Math.round(e)); 
		System.out.println(Math.round(f)); 
		System.out.println(Math.round(g)); 
	}}

위 프로그램을 컴파일하면 출력 결과는 다음과 같습니다.

10110110090

Java Number类Java Number class