javaSE复习之——Math数学类的使用
Math类的方法
int abs(int a)
取绝对值
double ceil(double a)
向上取整数返回double,例子:输入12.56输出一个13.0
double floor(double a)
与上同理,但是向下取整数
int max(int a,int b) min自学
取大的值
double pow(double a,double b)
a是底数,b是指数
double random()
生成0.0到1.0之间的随机小数,包括0.0不包括1.0
int round(float a) 参数为double的自学
四舍五入
double sqrt(double a)
开平方 输入4返回2.0 输入9返回3