博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Math.round() ceil floor
阅读量:5169 次
发布时间:2019-06-13

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

 

 

Math.round(11.5)等於多少? Math.round(-11.5)等於多少?

Math类中提供了三个与取整有关的方法:ceil、floor、round,这些方法的作用与它们的英文名称的含义相对应,例如,ceil的英文意义是天花板,该方法就表示向上取整,Math.ceil(11.3)的结果为12,Math.ceil(-11.3)的结果是-11;floor的英文意义是地板,该方法就表示向下取整,Math.ceil(11.6)的结果为11,Math.ceil(-11.6)的结果是-12;最难掌握的是round方法,它表示“四舍五入”,算法为Math.floor(x+0.5),即将原来的数字加上0.5后再向下取整,所以,Math.round(11.5)的结果为12,Math.round(-11.5)的结果为-11。

 

System.out.println(Math.round(-11.5)+" "+Math.floor(-11.5+0.5)); //-11  System.out.println(Math.round(-11.6)+" "+Math.floor(-11.6+0.5));//-12

 

 

1         // 四舍五入 2         System.out.println(Math.round(11.4)); 3         System.out.println(Math.round(11.6)); 4         System.out.println(Math.round(-11.2)); 5         System.out.println(Math.round(-11.6)); 6         // 向上取整 7         System.out.println(Math.ceil(11.6)); 8         System.out.println(Math.ceil(-11.4)); 9         // 向下取整10         System.out.println(Math.floor(11.6));11         System.out.println(Math.floor(-11.4));

 

 

// 四舍五入        System.out.println(Math.round(11.4));//11        System.out.println(Math.round(11.5));//12        System.out.println(Math.round(-11.4));//-11        System.out.println(Math.round(-11.5)); //-11        System.out.println(Math.round(-11.6));//-12

 

转载于:https://www.cnblogs.com/thrive/p/4056093.html

你可能感兴趣的文章
bzoj 2600: [Ioi2011]ricehub
查看>>
创建数据库,表
查看>>
工厂模式
查看>>
计算机网络基础知识
查看>>
C#里如何遍历枚举所有的项
查看>>
如何在键盘出现时滚动表格,以适应输入框的显示
查看>>
超级强大的鼠标手势工具
查看>>
常用Dockerfile举例
查看>>
jquery的ajax用法
查看>>
设计模式-策略模式(Strategy)
查看>>
django orm 数据查询详解
查看>>
JarvisOJ Basic 熟悉的声音
查看>>
C# list导出Excel(二)
查看>>
CAS 单点登录模块学习
查看>>
Android应用开发-网络编程①
查看>>
input中的name,value以及label中的for
查看>>
静态库制作-混编(工程是oc为基础)
查看>>
jQuery 显示加载更多
查看>>
Confluence 6 系统运行信息中的 JVM 内存使用情况
查看>>
Confluence 6 升级以后
查看>>