I have to break out of the loop if the user inputs a specific input. But I am unable to do that using the if loop to break out of the while loop. I also tried using the same condition in the while loop as well, but that doesn't work either.
import java.util.Scanner;
public class Main {
    public static void main(String[] args) {    
        String quit;
        Scanner c = new Scanner(System.in);
        while (true) {
            leapOrNot y = new leapOrNot();  
            System.out.println("press x to stop or any other letter to continue");
            quit = c.next();
            if (quit == "x" || quit == "X") {
                break;
            }
       }
    }
}
class leapOrNot {
    final String isLeap = " is a leap year.";
    final String notLeap = " is not a leap year.";
    int year;
    public leapOrNot() {
        Scanner a = new Scanner(System.in);
        System.out.println("Enter a year after 1581: ");
        year = a.nextInt();
        /* if (a.hasNextInt() == false) {
            System.out.println("Enter a 4 digit integer: ");
            year = a.nextInt();
        }
        couldn't make this condition work either
        */
        while (year < 1582) {
            System.out.println("The year must be after 1581. Enter a year after 1581: ");
            year = a.nextInt();
            continue;
        }
        if (year % 4 == 0) {
            if(year % 400 == 0 && year % 100 == 0) {
                System.out.println(year + isLeap);
            }
            if (year % 100 == 0) {
                System.out.println(year + notLeap);
            }
            else { 
                System.out.println(year + isLeap);
            }
        }
        else {
            System.out.println(year + notLeap);
        }
    }
}
 
    