在JAVA中完成

Round off in JAVA

我想四舍五入一个值,例如:

12.166666 ----> 12.00

12.49999 ----> 12.00

12.5111 ----> 13.00

12.9999 ----> 13.00

我想把50桶的硬币四舍五入。


您可以看看Math.round(double a)方法。

1
2
3
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/Max.html循环(双)