Math类: java.lang包下的 final,不可被继承, 其中的方法和属性都是静态的 其构造方法私有化了,其他类不可以使用构造方法. 向上取整:Math.ceil(double d); 向下取整:Math.floor(double d); 取较大值:Math.max(arg0,arg1); 四舍五入:Math.round(arg0); System类: System.in:默认键盘输出流 System.out:默认输出流 System.error:错误输出流 退出java虚拟机:Syst…