본문 바로가기

프로그래밍/자바

[자바] 정올 107 : 입력 - 형성평가2

728x90
반응형
SMALL
public class Main {
    public static void main(String[] args) {
        double a =  80.5, b = 22.34;
        System.out.printf("%10.2f%10.2f%10.2f", a, b, a+b);
    }
}
728x90
반응형
LIST