math 类的一些方法

时间:2021-02-08 21:51:59
System.out.println(Math.PI);   //3.1415926
        System.out.println(Math.abs(-10)); //取绝对值
        System.out.println(Math.ceil(12.3));//向上取整
        System.out.println(Math.ceil(12.99));
        System.out.println(Math.floor(12.99));//向下取整
        System.out.println(Math.floor(12.3));
        //获取两个值中的最大值
        System.out.println(Math.max(20, 30));
        //求前面的数是底数 后面的数是指数  2的3次方
        System.out.println(Math.pow(2, 3));
        //生成0.0到1.0之间的小数包括0.0不包括1.0
        System.out.println(Math.random());
        //四舍五入
        System.out.println(Math.round(12.3f));
        System.out.println(Math.round(12.9f));
        //开平方   根号2 根号4
        System.out.println(Math.sqrt(4));
        System.out.println(Math.sqrt(2));