标题: Math中常用的方法 [打印本页] 作者: 邸永明 时间: 2015-11-15 21:31 标题: Math中常用的方法 * A:Math类概述
* Math 类包含用于执行基本数学运算的方法,如初等指数、对数、平方根和三角函数。
* B:成员方法
* public static int abs(int a)
* public static double ceil(double a)
* public static double floor(double a)
* public static int max(int a,int b)
* public static double pow(double a,double b)
* public static double random()
* public static int round(float a)
* public static double sqrt(double a)