谁会做JAVA题目:检查输入的字符是否为“回文”。所谓回文是指当一个字符串正序读和逆序读时都一样

会的快啊正在上课呢!
2024-12-01 23:14:04
推荐回答(2个)
回答1:

for(int i = 0; i < str.length()-i-1; i++)//str为要判断的字符串
{
if(str.charAt(i)==str.charAt(str.length()-i-1))
continue;
else return false;
}

return true;

回答2:

public boolean isHuiwen(String str){
StringBuffer strBuf = new StringBuffer(str);
if(strBuf.equals(strBuf.reverse())){
return true;
}
else{
return false;
}
}