尝试测试多字形回文,例如“男人,计划,运河巴拿马”。 我想创建一个字符串来保存输入字符串的小写版本,然后创建一个结果字符串来保存字母 - 要检查回文。然后循环遍历小写字符串的每个字符,以确定该字符是否为字母,以及该字符是否为将其添加到结果字符串的字母。
这是我的代码:
import java.util.Scanner;
public class PalindromeCheck {
private static char resultString;
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.println("Enter a String: ");
String s = input.nextLine();
s = s.toLowerCase();
String resultString = " ";
for (int i = 0; i < s.length(); i++) {
if (Character.isLetter(s.charAt(i)))
resultString += s.charAt(i);
}
int low = 0;
int high = s.length() - 1;
boolean isPalindrome = true;
if (high >= 0) {
while (low < high) {
if (s.charAt(low) != s.charAt(high)) {
isPalindrome = false;
break;
}
low++;
high--;
}
}
else {
isPalindrome = false;
}
if (isPalindrome)
System.out.println(s + " is a palindrome. ");
else
System.out.println(s + " is not a palindrome. ");
}
}
当我运行我的代码时,白色空格和标点符号没有被移除,所以我有一种感觉,我在第一次循环中搞砸了一些东西 - 但我似乎仍然无法弄明白。输入“一个人,一个计划,一个运河巴拿马”导致“一个人,一个计划,一条运河巴拿马不是一个回文。”
答案 0 :(得分:1)
两件事:
您正在测试s
,当resultString
删除了标点符号时,尚未删除标点符号。添加
s = resultString;
您将resultString
初始化为空格字符" "
会干扰回文测试。将其初始化为空字符串""
。