浏览 1106 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2013-05-14
package test; import org.apache.commons.math.util.MathUtils; public class TestMath { public static void main(String[] args) { System.out.println(20.0d / 3.0d); // 保留3位小数,四舍五入 System.out.println(MathUtils.round(20.0d / 3.0d, 3)); System.out.println(MathUtils.round(200.0d / 3.0d, 3)); } } /* 6.666666666666667 6.667 66.667 */ 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |