코드업 1019

Inhyeeee·2021년 1월 3일
0

코딩 삽질 기록

목록 보기
12/20
import java.util.Scanner;

public class Main {

	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		String str = sc.next();
		String date[] = str.split("[.]");
		
		int year = Integer.parseInt(date[0]);
		int month = Integer.parseInt(date[1]);
		int day = Integer.parseInt(date[2]);
		
		System.out.printf(String.format("%04d.%02d.%02d", year, month, day));
	}
}

여기서 '.'역시 배열의 한 요소니까 [.]으로!!

profile
avocadoxxi

0개의 댓글