1,max方法 求最大值
2,min方法 求最小值
3,round方法 四舍五入
4,pow方法 求次幂
public class TestMath {
public static void main(String args[]){
System.out.println("最大值:"+Math.max(1, 2));
System.out.println("最大值:"+Math.min(1, 2));
System.out.println("最近值:"+Math.round(1.2));
System.out.println("最近值:"+Math.round(1.6));
System.out.println("2的3次方:"+Math.pow(2, 3));
}
}