4、java中Math类的常用方法?
Java的Math类封装了很多与数学有关的属性和方法。如下所示:
System.out.println("计算平方根--Math.sqrt(81)-- "+Math.sqrt(81));//9.0
System.out.println("计算立方根--Math.cbrt(27)-- "+Math.cbrt(27));//3.0
System.out.println("计算x与y平方和的平方根--Math.sqrt(3,4)-- "+Math.hypot(3, 4));//5.0
System.out.println("计算a的b次方--Math.pow(4,2)--"+Math.pow(4,2));//16.0
System.out.println("计算e的x次方--Math.exp(3)--"+Math.exp(3));//20.085536923187668
System.out.println("求最大值--Math.max(81,56)--"+Math.max(81,56));//81
System.out.println("求最小值--Math.min(3.1,6.6)--"+Math.min(3.1,6.6));//3.1
System.out.println("求绝对值--Math.abs(90.4)--"+Math.abs(90.4));//90.4
System.out.println("求绝对值--Math.abs(-81.6)--"+Math.abs(-81.6));//81.6
//天花板
System.out.println("返回比它大的最小整数--Math.ceil(-10.1)--"+Math.ceil(-10.1));//-10.0
System.out.println("返回比它大的最小整数--Math.ceil(10.7)--"+Math.ceil(10.7));//11.0
System.out.println("返回比它大的最小整数--Math.ceil(-0.7)--"+Math.ceil(-0.7));//0.0
System.out.println("返回比它大的最小整数--Math.ceil(0.0)--"+Math.ceil(0.0));//0.0
//地板
System.out.println("返回比它小的最大整数--Math.floor(-10.1)-- "+Math.floor(-10.1));//-11.0
System.out.println("返回比它小的最大整数--Math.floor(10.7)-- "+Math.floor(10.7));//10.0
System.out.println("返回比它小的最大整数--Math.floor(-0.7)-- "+Math.floor(-0.7));//-1.0
System.out.println("返回比它小的最大整数--Math.floor(-0.0)-- "+Math.floor(-0.0));//-0.0
System.out.println("返回比它小的最大整数--Math.floor(-2.5)-- "+Math.floor(-2.5));//-3.0
//随机数
System.out.println("[0,1)之间的随机数-- "+Math.random());//0.48482777399357113
System.out.println("[0,100)之间的随机数-- "+Math.random()*100);//92.73258074803167
//四舍五入,返回double值
System.out.println("返回最接近参数的整数,若两个数同样接近,返回偶数那个--Math.rint(-2.5)-- "+Math.rint(-2.5));//-2.0
System.out.println("返回最接近参数的整数,若两个数同样接近,返回偶数那个--Math.rint(-1.9)-- "+Math.rint(-1.9));//-2.0
System.out.println("返回最接近参数的整数,若两个数同样接近,返回偶数那个--Math.rint(2.5)-- "+Math.rint(2.5));//2.0
System.out.println("返回最接近参数的整数,若两个数同样接近,返回偶数那个--Math.rint(10.7)-- "+Math.rint(10.7));//11.0
System.out.println("返回最接近参数的整数,若两个数同样接近,返回偶数那个--Math.rint(-1.3)-- "+Math.rint(-1.3));//-1.0
//四舍五入,float返回int类型,double返回long类型
System.out.println("四舍五入--Math.round(-0.7)-- "+Math.round(-0.7));//-1
System.out.println("四舍五入--Math.round(-1.5)-- "+Math.round(-1.5));//-1
System.out.println("四舍五入--Math.round(-10.07)-- "+Math.round(-10.07));//-10
System.out.println("四舍五入--Math.round(-2.5)-- "+Math.round(-2.5));//-2
System.out.println("比a大一点点的浮点数--Math.nextUp(2.5)-- "+Math.nextUp(2.5));//2.5000000000000004
System.out.println("比a小一点点的浮点数--Math.nextDown(2.5)-- "+Math.nextDown(2.5));//2.4999999999999996
System.out.println("比a大或者小一点点的浮点数--Math.nextAfter(1.2,2.5)-- "+Math.nextAfter(1.2,2.5));//1.2000000000000002
System.out.println("比a大或者小一点点的浮点数--Math.nextAfter(1.2,-1)-- "+Math.nextAfter(1.2,-1));//1.1999999999999997