Java学习第三十九天<Math类><Arrays类><System类><大数处理><Date类><日历类><章节作业>
Math类packagechapter16.Math类;publicclassMathMethod{ publicstaticvoidmain(String[]args){ //全是静态方法 System.out.println(Math.abs(-9));//绝对值 System.out.println(Math.pow(2,4));//2^4 System.out.print