Loading

JAVA_SE基础——70.Math类

package cn.itcast.other;
/*
 Math 数学类, 主要是提供了很多的数学公式。
 
 abs(double a)  获取绝对值
 ceil(double a)  向上取整
 floor(double a)  向下取整
 round(float a)   四舍五入
 random()   产生一个随机数. 大于等于 0.0 且小于 1.0 的伪随机 double 值
 
 */




public class Demo4 {

public static void main(String[] args) {
System.out.println("绝对值:"+Math.abs(-3));
System.out.println("向上取整:"+Math.ceil(3.14));
System.out.println("向下取整:"+Math.floor(-3.14)); //
System.out.println("四舍五入:"+Math.round(3.54));
System.out.println("随机数:"+Math.random());

}

}

posted @ 2016-11-30 13:11  脚本叔叔  阅读(151)  评论(0编辑  收藏  举报