标题: Math类中常用的方法。除了这些还有什么常用的呢? [打印本页] 作者: 刘文秀 时间: 2016-7-29 19:28 标题: Math类中常用的方法。除了这些还有什么常用的呢? /*
public static int min(int a,int b) 求两个数的最小值
public static int max(int a,int b) 求两个数的最大值
public static long round(double a) 四舍五入
public static double ceil(double a) 向上取整
public static double floor(double a) 向下取整
*/
public class MyMath {
public static void main(String[] args) {
int a = 50;
int b = 60;
int min = Math.min(a,b);
int max = Math.max(a,b);
long i = Math.round(45.6);
double x = Math.ceil(90.1);
double y = Math.floor(90.1);