一.Math 这个类包含执行指数.对数.平方根法.三角函数等基本的数字运算. Math中还包含一些静态常量供我们调用. 如PI圆周率,E. 1.abs(),返回该数的绝对值. public class Test { public static void main(String[] args) { System.out.println(Math.abs(1.0)); System.out.println(Math.abs(-1)); System.out.println(Math.abs(-0))…