空欄0
512 ワード
String.format()を使用できます.
%02 dは2桁、%04 dは4桁とする.
%02 dは2桁、%04 dは4桁とする.
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String a;
a = sc.next();
String[] date = a.split("[.]");
int year = Integer.parseInt(date[0]);
int month = Integer.parseInt(date[1]);
int day = Integer.parseInt(date[2]);
System.out.println(String.format("%02d-%02d-%04d", day, month, year));
}
}
Reference
この問題について(空欄0), 我々は、より多くの情報をここで見つけました https://velog.io/@inhye-world/빈자리를-0으로-채우기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol