欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Math基础使用

程序员文章站 2022-07-02 12:29:20
```java /* java.lang.Math类是数学相关的工具类,里面提供的大量静态方法,完成与数学运算的操作 public static double abs(double num):获取绝对值。 public static double ceil(double num):向上取整。 pub... ......
/*
java.lang.math类是数学相关的工具类,里面提供的大量静态方法,完成与数学运算的操作

public static double abs(double num):获取绝对值。
public static double ceil(double num):向上取整。
public static double floar(double num):向下取整。
public static lang round(double num):四舍五入。
 */

public class demo02 {
    public static void main(string[] args) {
        //绝对值,使用abs方法
        system.out.println(math.abs(3.9));//3.9
        system.out.println(math.abs(0));//0
        system.out.println(math.abs(-3.1));//3.1
        system.out.println("=============");
        //向上取整
        system.out.println(math.ceil(3.1));//4.0
        system.out.println(math.ceil(3.9));//4.0
        system.out.println(math.ceil(3.0));//3.0
        system.out.println("================");
        //向下取整
        system.out.println(math.floor(3.1));//3.0
        system.out.println(math.floor(3.9));//3.0
        system.out.println(math.floor(3.0));//3.0
        system.out.println("================");
        //四舍五入
        system.out.println(math.round(4.4));//4
        system.out.println(math.round(4.6));//5
    }
}