返回顶部
首页 > 资讯 > 后端开发 > JAVA >JAVA中取整数的四种方法
  • 706
分享到

JAVA中取整数的四种方法

java后端面试学习 2023-09-14 22:09:50 706人浏览 八月长安
摘要

1.向下取整 Math.floor(),向下取整就是取最小的整数,如1.9就返回值为1.0,-1.9就返回-2.0,返回的总是小于等于原数。 2.向上取整 Math.ceil(),向上取整顾名思义就是取最大的整数,如1.9就返回2.0,-

1.向下取整
Math.floor(),向下取整就是取最小的整数,如1.9就返回值为1.0,-1.9就返回-2.0,返回的总是小于等于原数。

2.向上取整
Math.ceil(),向上取整顾名思义就是取最大的整数,如1.9就返回2.0,-1.9就返回-1.0,返回的总是大于等于原数,如图。

3.接近取整
Math.rint(),接近取整顾名思义就是接近哪个取整哪个,如1.6接近2,所以就取2;1.4接近1,所以就取1;那么1.5呢,1.5跟1和2都很接近,这时候就取偶数,如图。

4.四舍五入或(+0.5向下取整)
Math.round(),这个round就有点意思了,如果只考虑正整数的情况下就很简单,就是我们平时说的四舍五入来算就行了,如果是负数,那么的话就要负数+0.5然后再向下取整,如Math.round(-0.6) = (-0.6+0.5)=-0.1,然后向下取整就是-1,

5.类型强转(int)double,(int) float......

注意:此种方法将会直接截取小数后面的部分,直接拿到整数。

 

public class demo_2 {public static void main(String[] args) {// 向下取整System.out.println(Math.floor(1.9));System.out.println(Math.floor(-1.9));System.out.println("--------");// 向上取整System.out.println(Math.ceil(1.9));System.out.println(Math.ceil(-1.9));System.out.println("--------");// 接近取整System.out.println(Math.rint(1.6));System.out.println(Math.rint(1.4));System.out.println(Math.rint(1.5));System.out.println(Math.rint(2.5));System.out.println("--------");// 四舍五入System.out.println(Math.round(2.5));System.out.println(Math.round(-2.5));System.out.println(Math.round(1.2));}}

来源地址:https://blog.csdn.net/qq_63802547/article/details/127818807

--结束END--

本文标题: JAVA中取整数的四种方法

本文链接: https://lsjlt.com/news/407847.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作