Notice
Recent Posts
Recent Comments
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Archives
Today
Total
관리 메뉴

충분히 쌓여가는

반올림, Math.round() 본문

Java/JAVA1

반올림, Math.round()

빌드이너프 2023. 5. 16. 09:21

Math.round() 사용(반올림)

public class practice {
    public static void main(String[] args) {
        double pi = 3.141592;

        System.out.println(pi); // 3.141592
        System.out.println(pi * 1000); // 3141.592
        System.out.println(Math.round(pi * 1000)); // 3142

        System.out.println(Math.round(pi * 1000) / 1000); // 3
        System.out.println((double)Math.round(pi * 1000) / 1000); // 3.142
        System.out.println(Math.round(pi * 1000) / 1000.0); // 3.142
    }
}

 
int 사용(버림)

public class practice {
    public static void main(String[] args) {
        double pi = 3.141592;

        System.out.println(pi*1000); // 3141.592

        System.out.println((int)pi*1000); // 3000
        System.out.println((int)(pi*1000)); // 3141

        System.out.println((int)(pi*1000)/1000); // 3
        System.out.println((int)(pi*1000)/1000.0); // 3.141
    }
}

 

'Java > JAVA1' 카테고리의 다른 글

비교 연산자 < > <= >= == !=  (0) 2023.05.16
나머지 연산자 %  (0) 2023.05.16
산술 변환  (0) 2023.05.15
형변환(casting)  (0) 2023.05.15
증감 연산자 전위형(prefix), 후위형(postfix)  (0) 2023.05.15