문제설명 년, 월, 일을 입력받아 지정된 형식으로 출력하는 연습을 해보자. 입력 출력 2013.8.5 2013.08.05 문제풀이 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String[] cmd = sc.nextLine().split("\\."); int a= Integer.parseInt(cmd[0]); int b= Integer.parseInt(cmd[1]); int c= Integer.parseInt(cmd[2]); System.out.printf("%..