본문 바로가기

Java

Java Math.round()로 반올림하기

 

 

 

Math.round()를 이용해서 원하는 자리, 원하는 수를 표현할 수 있음

class Ex3_11 {
	public static void main(String args[]) { 
		double pi = 3.141592; 
		System.out.println(pi); // 3.141592
		System.out.println(pi*1000); // 3141.592
		System.out.println(Math.round(pi*1000)); // 3142
		System.out.println(Math.round(pi*1000)/1000); // 3
		System.out.println((double)Math.round(pi*1000)/1000.0); // 3.142
		System.out.println(Math.round(pi*10)); // 31
    }
}