码迷,mamicode.com
首页 > 其他好文 > 详细

5_Math数学工具类的使用

时间:2019-12-01 14:07:12      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:java   system   使用   int   四舍五入   ble   取整   round   math   

Math 数学工具类的使用

1. abs(num) : 获取绝对值

// 获取绝对值
System.out.println(Math.abs(3.14));  // 3.14
System.out.println(Math.abs(-2.4));  // 2.4

2. ceil(num) : 向上取整

// 向上取整
System.out.println(Math.ceil(2.1));  // 3.0

3. floor(num) : 向下取整

// 向下取整
System.out.println(Math.floor(2.9));  // 2.0

4. 四舍五入

// round(num) : 四舍五入
System.out.println(Math.round(2.4)); // 2
System.out.println(Math.round(2.5));  // 3
System.out.println(Math.round(2.6));  // 3

5. Math.PI : 近似圆周率常量 (double)

System.out.println(Math.PI);  // 3.141592653589793

5_Math数学工具类的使用

标签:java   system   使用   int   四舍五入   ble   取整   round   math   

原文地址:https://www.cnblogs.com/nichengshishaonian/p/11965541.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!