charAt の部分は理解していますが、他の部分で問題が発生しています。このコードの残りの部分を順を追って説明していただければ、より明確に理解できます。ありがとう
public static boolean y(String str) {
int i = 0;
int j = str.length()-1;
while (i != j && (j - i) != 1) {
if (str.charAt(i) != str.charAt(j))
{
return false;
}
i++;
j--;
}
return true;
}
opps エラーが発生しました while ステートメントは次のようになります >> while (i != j && (j - 1) ! = 1)