gpt4 book ai didi

java - JAVA 中的四舍五入

转载 作者:行者123 更新时间:2023-12-01 06:55:52 26 4
gpt4 key购买 nike

我想对 ex 的值进行四舍五入:

12.166666 ----> 12.00

12.49999 ----> 12.00

12.5111 ----> 13.00

12.9999 ----> 13.00

我想四舍五入 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

关于java - JAVA 中的四舍五入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12190845/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com