package Math;
/**
* @author jee
* @version 1.0
*/
public class Math01 {
public static void main(String[] args) {
// Math類的常用方法
// 1.絕對(duì)值
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 求開(kāi)方
double sqrt = Math.sqrt(6);
System.out.println("sqrt:"+sqrt);
// 7.
}
}
本文摘自 :https://blog.51cto.com/u