0

我想为 ex 取整一个值:

12.166666 ----> 12.00

12.49999 ----> 12.00

12.5111 ----> 13.00

12.9999 ----> 13.00

我想四舍五入wrt 50 paise。

4

2 回答 2

9

你可以看看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
于 2012-08-30T06:14:01.397 回答
0

您可以使用Math.round. 有关文档,请查看: http://docs.oracle.com/javase/7/docs/api/java/lang/Math.html#round(double)

于 2012-08-30T06:12:57.150 回答