数学运算类Math和随机数Random类

Math:提供数学运算的类。
Random:产生随机数的类。

  • 成员变量:
    • public static final double PI
    • public static final double E
  • 成员方法:
    • public static int abs(int a);      //绝对值
    • public static double ceil(double a);   //向上取整
    • public static double floor(double a);  //向下取整
    • public static int max(int a,int b);   //最大值 (min自学)
    • public static double pow(double a,double b); //a的b次幂
    • public static double random();     //随机数 [0.0,1.0)
    • public static int round(float a) ;    //四舍五入(参数为double的自学)
    • public static double sqrt(double a);   //正平方根

成员变量和成员方法均是 static 修饰,可以使用 Math.* 直接调用。一般像 Math 这种工具类都会这样设计。

public class TestDemo {
    public static void main(String[] args) {
        // public static final double PI
        System.out.println("PI:" + Math.PI);
        // public static final double E
        System.out.println("E:" + Math.E);
        System.out.println("--------------");

        // public static int abs(int a):绝对值
        System.out.println("abs:" + Math.abs(10));
        System.out.println("abs:" + Math.abs(-10));
        System.out.println("--------------");

        // public static double ceil(double a):向上取整
        System.out.println("ceil:" + Math.ceil(12.34));
        System.out.println("ceil:" + Math.ceil(12.56));
        System.out.println("--------------");

        // public static double floor(double a):向下取整
        System.out.println("floor:" + Math.floor(12.34));
        System.out.println("floor:" + Math.floor(12.56));
        System.out.println("--------------");

        // public static int max(int a,int b):最大值
        System.out.println("max:" + Math.max(12, 23));
        // 需求:我要获取三个数据中的最大值
        System.out.println("max:" + Math.max(Math.max(12, 23), 18));
        // 需求:我要获取四个数据中的最大值
        System.out.println("max:"
                + Math.max(Math.max(12, 78), Math.max(34, 56)));
        System.out.println("--------------");

        // public static double pow(double a,double b):a的b次幂
        System.out.println("pow:" + Math.pow(2, 3));
        System.out.println("--------------");

        // public static double random():随机数 [0.0,1.0)
        System.out.println("random:" + Math.random());
        // 获取一个1-100之间的随机数
        System.out.println("random:" + ((int) (Math.random() * 100) + 1));
        System.out.println("--------------");

        // public static int round(float a) 四舍五入(参数为double的自学)
        System.out.println("round:" + Math.round(12.34f));
        System.out.println("round:" + Math.round(12.56f));
        System.out.println("--------------");

        //public static double sqrt(double a):正平方根
        System.out.println("sqrt:"+Math.sqrt(4));
    }
}

输出:
PI:3.141592653589793
E:2.718281828459045
--------------
abs:10
abs:10
--------------
ceil:13.0
ceil:13.0
--------------
floor:12.0
floor:12.0
--------------
max:23
max:23
max:78
--------------
pow:8.0
--------------
random:0.7518339907923193
random:40
--------------
round:12
round:13
--------------
sqrt:2.0 

获取在start到end之间的随机数
(int) (Math.random() * (end - start + 1)) + start

Random:产生随机数的类

  • 构造方法:
    • public Random():没有给种子,用的是默认种子,是当前时间的毫秒值
    • public Random(long seed):给出指定的种子
  • 成员方法:
    • public int nextInt():返回的是int范围内的随机数
    • public int nextInt(int n):返回的是[0,n)范围的内随机数

注意:给定种子后,每次得到的随机数是相同的。

public class TestDemo {
    public static void main(String[] args) {
        // 创建对象
        Random r = new Random();

        for (int x = 0; x < 5; x++) {
            int num = r.nextInt(100) + 1;
            System.out.println(num);
        }
    }
}

第一次运行,打印:
78
97
2
17
15
第二次运行,打印:
49
69
85
37
31

public class TestDemo {
    public static void main(String[] args) {
        // 创建对象
        Random r = new Random(111);

        for (int x = 0; x < 5; x++) {
            int num = r.nextInt(100) + 1;
            System.out.println(num);
        }
    }
}

第一次运行,打印:
94
71
58
98
10
第二次运行,打印:
94
71
58
98
10

Random r = new Random(111); 给定种子后,每次获取的随机数相同

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

不会叫的狼

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值