1
ユーザーはXX/XX/XXXXの形式で日付を入力していますが、区切り文字を使用して入力内の整数を選択しますが、最後に別の/を置かずに年変数を取得する方法はわかりません入力のその年の変数を取得するにはどうすればいいですか?事前にスキャナで/年末なしの年変数を取得できないのはなぜですか?
おかげ
package formatting_problem;
import java.util.Scanner;
public class DateFormatter {
public static void main(String[] args) {
Integer day = 0;
Integer month = 0;
Integer year = 0;
Integer test = null;
Scanner input = new Scanner(System.in).useDelimiter("/");
System.out.println("Enter a date in the format XX/XX/XXXX to be formatted to Month Day,Year");
while (input.hasNext()){
month = input.nextInt();
day = input.nextInt();
year = input.nextInt();
System.out.println();
}