当前位置:首页 > IT技术 > 编程语言 > 正文

java-Math类常用方法
2022-02-14 10:56:33

package Math;

/**
* @author jee
* @version 1.0
*/
public class Math01 {
public static void main(String[] args) {
// Math类的常用方法
// 1.绝对值
int abs = Math.abs(-9);
System.out.println("abs:"+abs);
// 2.求幂 pow()
double pow = Math.pow(2,4);
System.out.println("pow: "+pow);
// 3.ceil 向上取整
double ceil = Math.ceil(-2.659);
System.out.println("ceil:"+ceil);
// 4.floor 向下取整
double floor = Math.floor(4.5691);
System.out.println("floor:"+floor);
// 5.round 四舍五入
double round = Math.round(5.0032);
System.out.println("round:"+round);
// 6.sqrt 求开方
double sqrt = Math.sqrt(6);
System.out.println("sqrt:"+sqrt);
// 7.
}
}


本文摘自 :https://blog.51cto.com/u

开通会员,享受整站包年服务立即开通 >