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