赞
踩
了解Math类中的静态常量值及常用方法
java.lang.Math类提供了常用的数学运算方法和两个静态常量E(自然对数的底数) 和PI(圆周率)
public class MathDemo01 {
public static void main(String[] args) {
// Math类中的两个静态常量值
double num1 = Math.E;
System.out.println("num1 = " + num1); // num1 = 2.718281828459045
System.out.println(Math.PI); // 3.141592653589793
}
}
public class MathDemo02 { public static void main(String[] args) { // Math类中常用方法 // 获取数据绝对值 System.out.println(Math.abs(100)); // 100 System.out.println(Math.abs(-100)); // 100 // 获取两个数据中的最大值 System.out.println(Math.max(100,200)); // 200 System.out.println(Math.max(1000,200)); // 1000 System.out.println(Math.max(100.32,200.55)); // 200.55 // 获取两个数据中的最小值 System.out.println(Math.min(100,200)); // 100 System.out.println(Math.min(1000,200)); // 200 System.out.println(Math.min(100.32,200.55)); // 100.32 System.out.println("------ ------ ------"); // 获取一个数据的近似数 // 上舍入 // public static double ceil(double a)返回最小的(最接近负无穷大)double 值,该值大于等于参数,并等于某个整数 System.out.println(Math.ceil(3.0)); // 3.0 System.out.println(Math.ceil(3.1)); // 4.0 System.out.println(Math.ceil(3.4)); // 4.0 System.out.println(Math.ceil(3.5)); // 4.0 System.out.println(Math.ceil(3.6)); // 4.0 System.out.println(Math.ceil(3.9)); // 4.0 System.out.println("------ ------ ------"); // 下舍入 // public static double floor(double a)返回最大的(最接近正无穷大)double 值,该值小于等于参数,并等于某个整数 System.out.println(Math.floor(5.0)); // 5.0 System.out.println(Math.floor(5.1)); // 5.0 System.out.println(Math.floor(5.4)); // 5.0 System.out.println(Math.floor(5.5)); // 5.0 System.out.println(Math.floor(5.6)); // 5.0 System.out.println(Math.floor(5.9)); // 5.0 System.out.println("------ ------ ------"); // 四舍五入 // public static long round(double a)返回最接近参数的 long System.out.println(Math.round(7.0)); // 7 System.out.println(Math.round(7.1)); // 7 System.out.println(Math.round(7.4)); // 7 System.out.println(Math.round(7.5)); // 8 System.out.println(Math.round(7.6)); // 8 System.out.println(Math.round(7.9)); // 8 System.out.println("------ ------ ------"); // 获取一个数的指定次方结果 // public static double pow(double a,double b)返回第一个参数的第二个参数次幂的值 System.out.println(Math.pow(2,10)); // 1024.0 System.out.println(Math.pow(3,4)); // 81.0 System.out.println("------ ------ ------"); // 获取一个数的算术平方根值 // public static double sqrt(double a)返回正确舍入的 double 值的正平方根 System.out.println(Math.sqrt(4)); // 2.0 System.out.println(Math.sqrt(3)); // 1.732 System.out.println(Math.sqrt(2)); // 1.414 System.out.println("------ ------ ------"); // 获取随机数 // public static double random()返回带正号的 double 值,该值大于等于 0.0 且小于 1.0 System.out.println(Math.random()); // Math.random()*10 (0 <= double < 10.0) System.out.println(Math.random()*10); // (int)(Math.random()*10) 返回一个大于等于0 小于10的int类型的数据 System.out.println((int)(Math.random()*10)); // (int)(Math.random()*(num2-num1)+num1) // 随即返回一个大于等于num1,且小于num2之间的int类型数据 int num = (int)(Math.random()*10+10); // [10,20) System.out.println("num = " + num); } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。