Java проверяющий ввод - PullRequest
0 голосов
/ 08 мая 2018

возможно ли в Java проверить, находится ли определенный вход между определенным диапазоном и целым числом? Я написал следующий код:

public void getBetAmountFromUser() {
    //Get Amount of Bet
    int x = 0;

    System.out.println("Your current pot is: " + potAmount);
    System.out.println("Enter your bet amount: ");
    x = input.nextInt();
    //Error message if bet is larger than pot and less than 0
    while (x>potAmount || x<0 || !(input.hasNextInt())){
        System.out.println("Error - cannot bet less than 0 or more than " + potAmount + "..Enter your bet amount: ");
        x = input.nextInt();
    }
    //Bet should be less than or equal to pot if 0 user quit
    if (x > 0 && x <= potAmount) {
        betAmount = x;
        potAmount = potAmount - betAmount;
    } else if (x == 0) {
        System.out.println("You end the game with pot " + potAmount);
        System.exit(0);
    } 

}

Следующий цикл не работал при проверке целочисленного значения

while (x>potAmount || x<0 || !(input.hasNextInt())){
        System.out.println("Error - cannot bet less than 0 or more than " + potAmount + "..Enter your bet amount: ");
        x = input.nextInt();
    }

1 Ответ

0 голосов
/ 08 мая 2018

Вы можете попробовать использовать String вместо int. Затем вы можете продолжить с int, используя Integer.parseInt(x), потому что оно уже было проверено как действительное целое число после do-while

String x;
String regex = "[0-9]+";  // to check the string only is made up of digits

int potAmount = 10;
Scanner input = new Scanner(System.in);

do {
    System.out.println("Please input an integer");
    x = input.next();
} while (!x.matches(regex) || Integer.parseInt(x) > potAmount || Integer.parseInt(x) < 0);

int validBet = Integer.parseInt(x);
/* .
   .
   .  *\
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...