我正在使用while(!stdin.hasNextInt())检查输入的值是否为数字。
while (!stdin.hasNextInt())
{
stdin.nextLine();
System.out.println("It must be a numeric value, re-enter: ");
}
side_1 =stdin.nextInt();
现在我还要检查一下,如果它的数字是>无论如何,我可以在相同条件下得到它吗?
谢谢!