코딩테스트/정리노트

    [Java] Math.round 관련

    Java 에서 숫자에 대한 반올림 기능을 수행할 수 있는 메소드로 Math.round()를 제공한다. ※ 참고로 올림과 내림은 Math.ceil() / Math.floor() 이다. import java.lang.Math; float varfloat1 = 5.2f; float varfloat2 = 5.8f; System.out.println(Math.round(varfloat1)); // 5 System.out.println(Math.round(varfloat2)); // 6 기본적으로 round 메소드는 인자로 주어지는 수의 소수점 첫째 자리에서 반올림한 수를 반환한다. float varfloat = 5.2f; double vardouble = 5.8f; int varint = Math.round(va..