본문 바로가기

프로그래밍/자바

[자바] 정올 513 : 입력 - 자가진단5

728x90
반응형
SMALL
public class Main {
    public static void main(String[] args) {
        double y = 2.1, in = 10.5;
        System.out.printf("%4.1fyd = %5.1fcm\n",y,y*91.44);
        System.out.printf("%4.1fin = %5.1fcm",in, in*2.54);
    }
}
728x90
반응형
LIST