读取 Java 中的输入整数

Reading input integer in Java

当我运行这个程序时,它不起作用。我可以输入你的名字、我的出生年份、当前年份,但在我输入当前年份后,它不显示我的年龄。你能告诉我我的代码有什么问题并解释原因吗?好像我不明白 Java.

中的输入是如何工作的
package com.company;

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner get_input = new Scanner(System.in);
        System.out.println("Enter your name ");
        String name = get_input.nextLine();


        boolean is_int = false;
        int year_of_birth = 0;
        System.out.println("Enter your year of birth");
        while (!get_input.hasNextInt()) {

            System.out.println("Year invalid");
            System.out.println("Enter your year of birth");
            get_input.next();
        }
        year_of_birth = get_input.nextInt();

        System.out.println("Enter the current year");
        get_input.next();
        int current_year=get_input.nextInt();

        int age = current_year-year_of_birth;

        System.out.println(current_year);
        System.out.println(year_of_birth);
        System.out.println("Your name is " + name + " and you are " + age + " year old.");

        get_input.close();

    }
}

提前致谢

只需删除打印 System.out.println("Enter the current year"); 之后的行 get_input.next();,代码应该可以工作。

如果删除 get_input.next();打印 "Enter the current year" 后,您的问题应该消失了。我还会在那个区域添加错误检查,因为用户可以输入无效的年份。