Math类的三个方法比较: floor() ceil() round()
2019-04-30 23:41:00来源:博客园 阅读 ()
1 public class Test { 2 public static void main(String[] args) { 3 double d1 = 3.4, d2 = 3.6; //正数 4 double d3 = -3.4, d4 = -3.6; //负数 5 6 float f1 = 4.4F, f2 = 4.6F; //正数 7 float f3 = -4.4F, f4 = -4.6F; //负数 8 9 //floor()方法只能接收double类型,返回double类型 10 //向下取整,返回小于参数的最大整数 11 System.out.println(Math.floor(d1));//3.0 12 System.out.println(Math.floor(d2));//3.0 13 System.out.println(Math.floor(d3));//-4.0 14 System.out.println(Math.floor(d4));//-4.0 15 16 17 //ceil()方法只能接收double类型,返回double类型 18 //向上取整,返回大于参数的最小整数 19 System.out.println(Math.ceil(d1));//4.0 20 System.out.println(Math.ceil(d2));//4.0 21 System.out.println(Math.ceil(d3));//-3.0 22 System.out.println(Math.ceil(d4));//-3.0 23 24 25 //round()方法可以接收double类型,返回long类型 26 //表示“四舍五入”,算法为Math.floor(x+0.5),即将参数加上0.5后再向下取整 27 System.out.println(Math.round(d1));//3 28 System.out.println(Math.round(d2));//4 29 System.out.println(Math.round(d3));//-3 30 System.out.println(Math.round(d4));//-4 31 32 //round()方法可以接收float类型,返回int类型 33 System.out.println(Math.round(f1));//4 34 System.out.println(Math.round(f2));//5 35 System.out.println(Math.round(f3));//-4 36 System.out.println(Math.round(f4));//-5 37 } 38 }
原文链接:https://www.cnblogs.com/parkour1026/p/10796336.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
下一篇:并发编程之多线程基础篇及面试
- 类的继承,方法重新中修饰符如何定义 2020-06-10
- java里面main方法中的String[]args 2020-06-07
- 错误: 在类中找不到 main 方法, 请将 main 方法定义为: & 2020-06-06
- 学习笔记之方法引用 2020-06-06
- 终于拿到了美团offer了,没有辜负了这三个月的努力啊 2020-06-06
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash