java中Math类的常用API
Math.abs(int a):绝对值
Math.ceil(double a):向上取整
Math.floor(double a):向下取整
Math.max(int a,int b):最大值
Math.pow(double a,double b):a的b次幂
Math.random():随机数 [0.0,1.0)
Math.round(float a) 四舍五入(参数为double的自学)
Math.sqrt(double a):正平方根
随笔看心情