자바 소수 반올림

2013. 8. 7. 17:42WEB/JSP(JAVA)



반응형

자바 반올림  Math.round 를 써주면 된다 .

Math 클래스를 이용하면 올림 내림 버리기가 가능 여러가지가 있으니 참고하자

 

ex)

static long  round(double d)
Returns the result of rounding the argument to an integer.
 
 static int  round(float f)
Returns the result of rounding the argument to an integer.

 

 

 

public class ggari_mahtRound {
	public static void main(String[] args) {

		int num = 156;
		int num1 = 10;
		double result = (double) (num) / (double) (num1);

		System.out.println("나눈수=" + result); 				// 그냥
		System.out.println("반올림=" + Math.round(result)); 	// 반올림
	}
}


반응형

'WEB > JSP(JAVA)' 카테고리의 다른 글

자바 형변환  (0) 2013.08.14
자바 달력  (2) 2013.08.08
자바format  (0) 2013.07.26
자바 랜덤함수 (Random)  (0) 2013.07.09
자바 StringTokenizer  (0) 2013.07.08