gpt4 book ai didi

java - 如何从输入中仅计算 4 个整数 - JAVA

转载 作者:行者123 更新时间:2023-12-01 16:16:09 26 4
gpt4 key购买 nike

嘿,刚刚为学校做一个项目,想知道如何限制用户只能输入 4 个整数作为邮政编码。例如:(1454)

    while (count == 1)
{
System.out.println("Input a postcode for us to send you the package: ");
try
{
postage = in.nextInt();
}
catch (Exception e)
{
System.out.println("This is an invalid input!");
in.next();
continue;
}
if (postage >= 0000 && postage <= 9999)
{
System.out.println(" ");
}
}

最佳答案

一种方法是将输入作为字符串,然后仅将前四个字符转换为 int(parseInt()) 并使用它。

关于java - 如何从输入中仅计算 4 个整数 - JAVA,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62385079/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com