package baseApi;
public class MathApi {
public static void main(String[] args) {
double d = Math.sqrt(4); // 求平方根
System.out.println(d); // 2.0
d = Math.ceil(4.24); // 向上取整
System.out.println(d); // 5.0
d = Math.floor(4.42); // 向下取整
System.out.println(d); // 4.0
d = Math.rint(-4.56); // 四舍五入 取整
System.out.println(d); // -5
d = Math.pow(3, 2); // 3的2次幂
System.out.println(d); // 9
int n = Math.round(4.25f); // 四舍五入 取整
System.out.println(n); // 4
long l = Math.round(97.4); // 同上
System.out.println(l); // 97
d= Math.random(); // 0-1的随机数
int sum = Math.addExact(23, 34); // 23 + 34
System.out.println(sum);
sum = Math.subtractExact(23, 12); // 23 - 12
System.out.println(sum);
sum = Math.multiplyExact(3, 6); // 3*6
System.out.println(sum);
sum = Math.incrementExact(4); // 4 + 1
System.out.println(sum); // 5
sum = Math.decrementExact(6); // 6-1
System.out.println(sum); // 5
sum = Math.negateExact(6); // 0-6
System.out.println(sum); // -6
Math.abs(-8); // 取绝对值
Math.max(2, 3); // 返回大值
Math.min(4, 7); // 返回小值
d = Math.signum(-4); // 小于0 返回-1.0
System.out.println(d);
d = Math.signum(0); // 等于0 返回0
System.out.println(d);
d = Math.signum(4); // 大于0 返回1
System.out.println(d);
}
}