JAVA/예제

[JAVA] ch03-18. 소숫점 자르기

밍글링글링 2017. 8. 21.
728x90
 
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 올림

728x90

댓글