This is what I have so far:
int question = sc.nextInt(); while (question!=1){ System.out.println(\"Enter The Correct Number ! \"); int question =
Reuse the question variable instead of redeclaring it.
question
int question = sc.nextInt(); while (question != 1) { System.out.println("Enter The Correct Number ! "); question = sc.nextInt(); // ask again }