近期用到四舍五入想到以前整理了一点,就顺便重新整理好经常见到的一些四舍五入,后续遇到常用也会直接在这篇文章更新。。。
public class Demo{ public static void main(String args[]){ System.out.println(Math.sqrt(16)); //4.0 System.out.println(Math.cbrt(8)); //2.0 System.out.println(Math.pow(3,2)); //9.0 System.out.println(Math.max(2.3,4.5));//4.5 System.out.println(Math.min(2.3,4.5));//2.3 System.out.println(Math.abs(-10.4)); //10.4 System.out.println(Math.abs(10.1)); //10.1 System.out.println(Math.ceil(-10.1)); //-10.0 System.out.println(Math.ceil(10.7)); //11.0 System.out.println(Math.ceil(-0.7)); //-0.0 System.out.println(Math.ceil(0.0)); //0.0 System.out.println(Math.ceil(-0.0)); //-0.0 System.out.println(Math.ceil(-1.7)); //-1.0 System.out.println(Math.floor(-10.1)); //-11.0 System.out.println(Math.floor(10.7)); //10.0 System.out.println(Math.floor(-0.7)); //-1.0 System.out.println(Math.floor(0.0)); //0.0 System.out.println(Math.floor(-0.0)); //-0.0 System.out.println(Math.random()); //小于1大于0的double类型的数 System.out.println(Math.random()*2);//大于0小于1的double类型的数 System.out.println(Math.random()*2+1);//大于1小于2的double类型的数 System.out.println(Math.rint(10.1)); //10.0 System.out.println(Math.rint(10.7)); //11.0 System.out.println(Math.rint(11.5)); //12.0 System.out.println(Math.rint(10.5)); //10.0 System.out.println(Math.rint(10.51)); //11.0 System.out.println(Math.rint(-10.5)); //-10.0 System.out.println(Math.rint(-11.5)); //-12.0 System.out.println(Math.rint(-10.51)); //-11.0 System.out.println(Math.rint(-10.6)); //-11.0 System.out.println(Math.rint(-10.2)); //-10.0 System.out.println(Math.round(10.1)); //10 System.out.println(Math.round(10.7)); //11 System.out.println(Math.round(10.5)); //11 System.out.println(Math.round(10.51)); //11 System.out.println(Math.round(-10.5)); //-10 System.out.println(Math.round(-10.51)); //-11 System.out.println(Math.round(-10.6)); //-11 System.out.println(Math.round(-10.2)); //-10 } }
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
软考中级精品资料免费领
- 历年真题答案解析
- 备考技巧名师总结
- 高频考点精准押题
- 资料下载
- 历年真题
193.9 KB下载数260
191.63 KB下载数245
143.91 KB下载数1139
183.71 KB下载数640
644.84 KB下载数2752
相关文章
发现更多好内容猜你喜欢
AI推送时光机Java中Math类常用方法代码详解
后端开发2023-05-31
Java详细讲解Math和Random类中有哪些常用方法
后端开发2024-04-02
Java常用API类之Math System tostring用法详解
后端开发2024-04-02
java中Vector类的常用方法详解
后端开发2024-04-02
Java中String类常用方法使用详解
后端开发2022-11-13
Java中Thread类详解及常用的方法
后端开发2024-04-02
Java中String类常用方法总结详解
后端开发2024-04-02
详解Java String类常用方法有哪些
后端开发2024-04-02
java代码大全及详解(Java 常用代码汇总)
后端开发2023-09-07
详解Java中Optional类的使用方法
后端开发2024-04-02
Java File类的概述及常用方法使用详解
后端开发2024-04-02
详解Java中Period类的使用方法
后端开发2024-04-02
详解Java中Duration类的使用方法
后端开发2024-04-02
Java BufferedOutputStream类的常用方法讲解
后端开发2024-04-02
java中set集合的常用方法详解
后端开发2024-04-02
Java中HashMap集合的常用方法详解
后端开发2024-04-02
Java中List集合的常用方法详解
后端开发2024-04-02
Java中Hashtable集合的常用方法详解
后端开发2024-04-02
Java中Map集合的常用方法详解
后端开发2024-04-02
java中TreeMap集合的常用方法详解
后端开发2024-04-02
咦!没有更多了?去看看其它编程学习网 内容吧