我正在编写一个程序来查找最多 8 个字符的单词/短语是否是回文。无论我输入什么作为输入,即使它是回文,我的程序都会打印我的 else 语句。我检查并确保我编写的代码实际上会反向打印输入,并且确实如此。所以我不太确定问题是什么。
import java.util.Scanner;
public class hw5 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
String word, newWord;
int lengthOfWord;
char lc;//last character
System.out.print("Enter word/phrase of 8 characters or less: ");
word = in.nextLine();
word = word.toLowerCase();
newWord = word;
lengthOfWord = word.length();
lc = word.charAt(lengthOfWord -1);
lc = word.charAt(lengthOfWord -1);
if (word.length() == 2)
newWord = lc+word.substring(0,1);
else if (word.length() == 3)
newWord = lc+word.substring(1,2)+word.substring(0,1);
else if (word.length() == 4)
newWord = lc+word.substring(2,3)+word.substring(1,2)+word.substring(0,1);
else if (word.length() == 5)
newWord = lc+word.substring(3,4)+word.substring(2,3)+word.substring(1,2)+word.substring(0,1);
else if (word.length() == 6)
newWord = lc+word.substring(4,5)+word.substring(3,4)+word.substring(2,3)+word.substring(1,2)+word.substring(0,1);
else if (word.length() == 7)
newWord = lc+word.substring(5,6)+word.substring(4,5)+word.substring(3,4)+word.substring(2,3)+word.substring(1,2)+word.substring(0,1);
else if (word.length() == 8)
newWord = lc+word.substring(6,7)+word.substring(5,6)+word.substring(4,5)+word.substring(3,4)+word.substring(2,3)+word.substring(1,2)+word.substring(0,1);
else
newWord = "error, not enough or too many characters";
if (newWord == word)
System.out.println("it is a palindrome");
else
System.out.println("it is not a palindrome");
System.out.println(newWord);