728x90 자바 소수점 자르기1 [JAVA] ch03-18. 소숫점 자르기 public class Ex18 { //소숫점 셋째자리까지 자르기 public static void main(String[] args){ float pi = 3.141592f; float shortpi = Math.round(pi * 1000) / 1000f; System.out.println(shortpi); } } // Math.round 반올림, Math.floor 소숫점 자르기(내림) // Math.cell 올림 JAVA/예제 2017. 8. 21. 이전 1 다음 728x90