Math 클래스 사실 이 클래스는 굳이 공부해야 하나 싶다. 그냥 대강 이런 기능이 있구나, 하는 것만 알아두고, 그때그때 필요할때 검색하면 되지 않을까 싶다. //Math 클래스 - 수학적인 계산에 사용. // java.lang.Math 패키지에 있으므로, import안해도 됨. public class ex95 { public static void main(String[] args) { //소숫점 첫째자리 반올림 double num = 91.789D; System.out.println( Math.round( num ) ); //92 //연습문제 54 //소수점 둘째자리에서 반올림 System.out.println( Math.round( num * 10 ) / 10.0 ); //소숫점 셋째자리에서 반올림..