论坛首页 综合技术论坛

commons-math-2.1数学运算小工具

浏览 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
*/
论坛首页 综合技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics