Я хотел бы указать необязательный & ldquo; неправильный номер. Попробуйте еще раз & rdquo; когда

Я предпочитаю использовать селектор, и я применяю его в документе.

Это привязывается к документу и будет применяться к элементам, которые будут отображаться после загрузки страницы.

Например:

$(document).on("click", $(selector), function() {
    // Your code here
});
0
задан Edgar Sousa 28 March 2019 в 02:02
поделиться

1 ответ

Вам не нужно do{} while(); для проверок, которые вы хотите сделать здесь, достаточно просто while(){} циклов.

Пожалуйста, попробуйте этот код:

Ps: Если это работает, пожалуйста, не забудьте высказать мой ответ. Удачного кодирования! :)

import java.util.Scanner;

public class GuessNumber {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);
        System.out.println("Enter name:");
        if (sc.hasNextLine()) {
            String userName = sc.nextLine();
            System.out.println("Hello " + userName + ",");
            System.out.println();
        }

        int secretNum = 5;
        int secretNum2 = 15;
        int guess = 0;

        System.out.println("Guess what is the number 0 to 10: ");

        if (sc.hasNextInt()) {
            guess = sc.nextInt();
        }

        while (secretNum != guess) {
            System.out.println("Please try again\n");
            if (sc.hasNextInt()) {
                guess = sc.nextInt();
            }

        }
        System.out.println("Well done\n");
        System.out.println("Are you ready for the next step?\n");

        System.out.println("Enter Yes or No");
        while (!sc.next().equals("yes") && !sc.next().equals("no"))
        {
            System.out.print("Yes");
        }

        System.out.println("Guess what is the number 11 to 20: ");

        if (sc.hasNextInt()) {
            guess = sc.nextInt();
        }

        while (secretNum2 != guess) {
            System.out.println("Please try again\n");
            if (sc.hasNextInt()) {
                guess = sc.nextInt();
            }

        }

        System.out.println("Congratulations");
        System.out.println();
        System.out.println("The End");

    }
}
0
ответ дан Adriano Marra 28 March 2019 в 02:02
поделиться
Другие вопросы по тегам:

Похожие вопросы: