Math常用的API
代码
System.out.println(Math.abs(-12)); // 12 绝对值System.out.println(Math.ceil(12.3)); // 13.0 向上取整System.out.println(Math.floor(12.3)); // 12.0 向下取整System.out.println(Math.max(12, 13)); // 13 最大值System.out.println(Math.min(12, 13)); // 12 最小值System.out.println(Math.pow(2, 3)); // 8.0 2的3次方System.out.println(Math.sqrt(9)); // 3.0 开平方System.out.println(Math.random()); // 0.0 ~ 1.0 之间的随机数