exの値を四捨五入したい:
12.166666 ----> 12.00
12.49999 ----> 12.00
12.5111 ----> 13.00
12.9999 ----> 13.00
wrt 50 パイセを四捨五入したいと思います。
exの値を四捨五入したい:
12.166666 ----> 12.00
12.49999 ----> 12.00
12.5111 ----> 13.00
12.9999 ----> 13.00
wrt 50 パイセを四捨五入したいと思います。
メソッドを見ることができますMath.round(double a)
。
System.out.println(Math.round(12.51));//Yields 13
System.out.println(Math.round(12.49));//Yields 12
System.out.println(Math.round(12.50));//Yields 13
使用できますMath.round
。ドキュメントについては、http:
//docs.oracle.com/javase/7/docs/api/java/lang/Math.html#round(double)をご覧ください。