当前位置:   article > 正文

Java核心API-Math类

Java核心API-Math类

Math类



前言

了解Math类中的静态常量值及常用方法


Math类

1、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
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

2、Math类中常用方法

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);

    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/167605
推荐阅读
相关标签
  

闽ICP备14008679号