디케이
2004.2.3 연월일 입력받아 2004.02.03으로 출력 본문
반응형
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String[] cmd = sc.nextLine().split("[.]"); //점으로 split은 중괄호를 감싸준다.
int y = Integer.parseInt(cmd[0]);
int m = Integer.parseInt(cmd[1]);
int d = Integer.parseInt(cmd[2]);
System.out.println(String.format("%04d.%02d.%02d", y,m,d)); //정수자리수 결정
}
}
. (점)은 split할때 [.] 중괄호로 감싸준다!!!!
반응형
'Java' 카테고리의 다른 글
자바: 10진수 > 2진수/8진수/16진수로 변환 + 대문자로출력 (0) | 2020.11.26 |
---|---|
Java - split, substring으로 문자열을 자르기 & 분리하기 (0) | 2020.11.26 |
자바: float 소수점 자릿수 정하기 (0) | 2020.11.26 |
Throws 예외처리(try, catch, finally) (0) | 2020.11.24 |
Exception 예외처리(try, catch, finally) (0) | 2020.11.24 |