I have a problem because I do not know how to save the variable. The variable newname and the newpassword deafult are zero. But in case 1 they are changed to the given values, but after case 1 the variables return to the basic values 0. and i cant log in (in case 2) becasue login and password always are 0. How i can globally set this variable on case 1?
    String newname = null;
    String newpassword = null;
    System.out.println("Hello!");
    System.out.println();
    System.out.println("     ****************************************");
    System.out.println("     *                 MENU                 *");
    System.out.println("     ****************************************");
    System.out.println("     1. Create new account");
    System.out.println("     2. Log in");
    System.out.println("     3. Help");
    System.out.println("     0. End");
    Scanner opcje = new Scanner(System.in);
    int choose = opcje.nextInt();
    switch (choose) {
        case 1:
            System.out.println("You choose create new acount\n Enter the login");
            Scanner nlogin = new Scanner(System.in);
            newname = nlogin.nextLine();
            System.out.println("Please enter the password ");
            Scanner npassword = new Scanner(System.in);
            newpassword = npassword.nextLine();
            System.out.println("the account has been created\n");
        case 2:
            Scanner login = new Scanner(System.in);
            System.out.println("Login:");
            String pass1 = login.nextLine();
            System.out.println("Password:");
            Scanner password = new Scanner(System.in);
            String pass2 = password.nextLine();
            if (pass1 == newname & pass2 == newpassword){
                System.out.println("you are logged in");
            }else{
                System.out.println("incorrect passoword or login");
            }
            break;
        case 3:
            System.out.println("Help is off");
            break;
        case 0:
            System.out.println("ending");
            break;
        default:
            System.out.println("Select the option by pressing 1,2,3 or 0");
            break;
    }
}
}
 
     
     
     
    