[코드업 기초 100제] [기초 - 입출력] 1019 ~ 1027 자바 풀이
문제 출처 https://github.com/haessae0/MCTP 1019. 연월일 입력받아 그대로 출력하기 import java.util.Scanner; public class codeup1019 { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); String[] date = sc.nextLine().split("\\."); int year = Integer.parseInt(date[0]); int month = Integer.parseInt(date[1]); int day = Integer.parseInt(date[2]); System.out.printf(String.forma..
2022.02.06