パスワード検証の2つの方法に問題があります。メソッドhasDigitsAndLettersは、文字列のすべての文字が数字と文字であるかどうかをチェックすることになっています。2番目のメソッドhasTwoDigitsは、パスに少なくとも2桁あるかどうかをチェックすることになっていますが、問題は、期待される結果に対して、それらが回転していることです。 false。誰かが助けることができれば。これがコードです。
//check if the whole string consists of digits and letters
public static boolean hasDigitsAndLetters(String pass)
{
for(int i=0; i<pass.length(); i++)
{
if(!Character.isLetterOrDigit((i)))
{
return false;
}
}
return true;
}
// check whether the password has at least 2 digits
public static boolean hasTwoDigits(String pass)
{
int counter = 0;
for(int i=0; i<pass.length(); i++)
{
if(Character.isDigit(i))
{
counter ++;
}
}
System.out.println("Number of digits: " + counter);
if(counter >= 2)
{
return true;
}
return false;
}