JAVA/예제

[JAVA] ch03-17. 소수 자리수 출력하기

밍글링글링 2017. 8. 21.
728x90
 
public class Ex17 {//float 소수 6째자리까지 출력, 소수 셋째자리까지 출력하기.
    public static void main(String[] args){
        float pi = 3.141592f;
        float shortpi = (int)(pi * 1000) / 1000f; // 소수 셋째자리까지 출력하기
        
        System.out.println(shortpi);
    }
}

728x90

댓글