Java——Math类

Java——Math类

Math类是数学操作类,提供了一系列用于数学运算的静态方法。

package com.yushifu.javaAPI;
//Math类是数学操作类,提供了一系列用于数学运算的静态方法。
public class MathDemo01 {
    public static void main(String[] args) {
        //计算绝对值 abs()方法————————absolute value 绝对值
        System.out.println("abs()绝对值:"+Math.abs(-1));// 1
        //计算大于参数的最小整数 ceil()方法——————ceil 天花板
        System.out.println("ceil()天花板:"+Math.ceil(6.1)); // 7.0
        System.out.println("ceil()天花板:"+Math.ceil(-2.3));// -2.0
        //计算小于参数的最小整数 floor()方法——————floor 地板
        System.out.println("floor()地板:"+Math.floor(6.1));// 6.0
        System.out.println("floor()地板:"+Math.floor(-2.3));//-3.0
        //对小数进行四舍五入 round()方法
        System.out.println("round()方法,四舍五入:"+Math.round(5.6));// 6
        System.out.println("round()方法,四舍五入:"+Math.round(5.4));// 5
        System.out.println("round()方法,四舍五入:"+Math.round(5.5));// 6
        //求两个数最大值最小值  max min 方法
        System.out.println(Math.max(2.1,3.2));//3.2
        System.out.println(Math.min(2.1,3.2));//2.1
        //生成一个大于等于 0.0 小于 1.0的随机值
        System.out.println("生成一个大于等于 0.0 小于 1.0的随机值:"+Math.random());
    }
}

Java——Math类_第1张图片

你可能感兴趣的:(javaSE,java,开发语言,学习,笔记)