博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java Math的 floor,round和ceil的使用
阅读量:4070 次
发布时间:2019-05-25

本文共 1113 字,大约阅读时间需要 3 分钟。

floor 返回不大于的最大整数 

round 则是4舍5入的计算,入的时候是到大于它的整数
round方法,它表示“四舍五入”,算法为Math.floor(x+0.5),即将原来的数字加上0.5后再向下取整,所以,Math.round(11.5)的结果为12,Math.round(-11.5)的结果为-11。
ceil 则是不小于他的最小整数

看例子

  Math.floor Math.round Math.ceil
1.4 1 1 2
1.5 1 2 2
1.6 1 2 2
-1.4 -2 -1 -1
-1.5 -2 -1 -1
-1.6 -2 -2 -1

测试程序如下:

public class MyTest {     public static void main(String[] args) {       double[] nums = { 1.4, 1.5, 1.6, -1.4, -1.5, -1.6 };       for (double num : nums) {         test(num);       }     }       private static void test(double num) {       System.out.println("Math.floor(" + num + ")=" + Math.floor(num));       System.out.println("Math.round(" + num + ")=" + Math.round(num));       System.out.println("Math.ceil(" + num + ")=" + Math.ceil(num));     }   }

运行结果 

Math.floor(1.4)=1.0 

Math.round(1.4)=1 

Math.ceil(1.4)=2.0 

Math.floor(1.5)=1.0 

Math.round(1.5)=2 

Math.ceil(1.5)=2.0 

Math.floor(1.6)=1.0 

Math.round(1.6)=2 

Math.ceil(1.6)=2.0 

Math.floor(-1.4)=-2.0 

Math.round(-1.4)=-1 

Math.ceil(-1.4)=-1.0 

Math.floor(-1.5)=-2.0 

Math.round(-1.5)=-1 

Math.ceil(-1.5)=-1.0 

Math.floor(-1.6)=-2.0 

Math.round(-1.6)=-2 

Math.ceil(-1.6)=-1.0

转载地址:http://emmji.baihongyu.com/

你可能感兴趣的文章
使用p6spy打印hibernate或者PreparedStatement的带参数值的sql语句
查看>>
流水账...12321984543
查看>>
Tied weights in Tensorflow
查看>>
spring security对用户名和密码的校验过程
查看>>
spring security对于多登陆页面多用户数据源的使用
查看>>
2017年11月
查看>>
流水账
查看>>
Mac下PDF转EPS的方法
查看>>
php中的一些好东西
查看>>
2018新年开篇
查看>>
comments on the inverse model to solve multi-objective optimization
查看>>
iphone通信录导入到e71中
查看>>
spring security自定义登陆成功后处理
查看>>
Matlab2017b在macos high Sierra下的mex
查看>>
什么是机器智能
查看>>
2018.04.06
查看>>
浅谈PCA 人脸识别
查看>>
向量子空间的一些错误认识
查看>>
n个样本的数据的标准差为什么除以n-1
查看>>
神经元细胞工作模型以及数学建模
查看>>