본문 바로가기

프로그래밍/자바

[자바] 정올 512 : 입력 - 자가진단4

728x90
반응형
SMALL
public class Main {
    public static void main(String[] args) {
        int w = 49;
        double r = 0.268300;
        System.out.printf(w + " * %.6f = %.6f", r, w*r);
    }
}
728x90
반응형
LIST