Math:用于数学运算的类。参数大多为double或者float类型

成员变量:

  • public static final double PI 3.141592653589793
  • public static final double E 2.718281828459045
    成员方法:
  • public static int abs(int a):绝对值
  • public static double ceil(double a):大于a的最小整数
  • public static double floor(double a):小于a的最大整数
  • public static int max(int a,int b):最大值
  • public static int max(int a,int b):最小值
  • public static double pow(double a,double b):a的b次幂
  • public static double random():随机数 [0.0,1.0)
  • public static int round(float a) 四舍五入
  • public static double sqrt(double a):正平方根
posted on 2017-04-03 11:21  2637282556  阅读(96)  评论(0编辑  收藏  举报