Я пишу этот код, но когда мой пароль правильный, у меня есть проблема. Пожалуйста, направьте меня. Я новичок в кодировке Java
import java.util.Scanner;
public class PasswordProjectQ {
private static Scanner passwordInput;
public static void main(String[] args) {
passwordInput = new Scanner(System.in);
int builtInPassword = 3720118;
System.out.println("Please enter your password:(just integer)");
if(passwordInput.hasNextInt() && passwordInput.nextInt() != builtInPassword) {
System.out.println("You entered the right format \nbut the password is WRONG!");
}else if(passwordInput.hasNextInt() && passwordInput.nextInt() == builtInPassword) {
System.out.println("Thanks,your password is correct");
}else {
System.out.println("WRONG format!");
}
}
}