Math常用操作 rint round
- 2017-01-21 22:38:00
- admin
- 原创 1904
一、Math常用操作
1、double rint(double a),返回最接近参数并且是整数的double
2、long round(double a),返回最接近参数的long
3、int round(float a),返回最接近参数的int
示例:
System.out.println(Math.rint(1.4)),输出1.0
System.out.println(Math.rint(1.6)),输出2.0
发表评论