Вы можете использовать цикл do - while
.Он отличается от цикла while
тем, что сначала выполняет код, а затем оценивает условие, заданное в операторе while.
System.out.println();
System.out.println("Type the word \"start\" when your ready to begin the quiz");
String start, answer;
Scanner input = new Scanner(System.in);
do {
start = input.nextLine();
if(!start.equals("start")) {
System.out.println("Make sure you read the question and try again");
} else {
System.out.println("Enter the answer here: ");
answer = input.nextLine();
}
} while (!start.equals("start"));