Why does it tell me that I can't compare Ints? I am trying to compare this line here and it wont let me all I get is :
if (counter1 = 0 || counter2 = 0)
{
return false;
}
Here is the rest of my code for reference.
public static boolean checkPassword(String password){
int length;
length = password.length();
if (length < 6 || length > 11){
System.out.println("Password must be 6 - 10 characters long!");
return false;
}
int counter1 = 0;
for (int i = 0; i < password.length(); i++){
if (Character.isLetter(password.charAt(i)))
counter1++;
}
int counter2 = 0;
for (int i = 0; i < password.length(); i++){
if(Character.isDigit(password.charAt(i)))
counter2++;
}
if (counter1 = 0 || counter2 = 0)
{
return false;
}
return true;
}
I keep getting Markers Undefined help me :)
