Which condition XXXX will prompt the user to enter a value n…

Which condition XXXX will prompt the user to enter a value not equal to 7, until a value that is exactly 7 is entered? int userInput;Scanner sc = new Scanner(System.in); do {    System.out.println(“Enter the number 7 to stop:”);    userInput = sc.nextInt();} while (XXXX);