1、特点

实现数学运算的工具类

2、常用方法

  1. 1int abs(int a) : 返回绝对值<br /> 2double ceil(double a) : 向上取整(天花板)<br /> 3double floor(double a) : 向下取整(地板)<br /> 4int round(float a) :四舍五入<br /> 5double pow(double a,double b) : 计算ab次方法