-2
// The "PalinDrome" class.
import java.awt.*;
import hsa.Console;
public class PalinDrome
{
static Console c; // The output console
public static void main (String[] args)
{
c = new Console();
c.println("Please enter a word");
String word = c.readLine();
int i;
int num = word.length();
String str = "";
for (i = num - 1 ; i >= 0 ; i--)
str = str + word.charAt (i);
if (str.equals (word))
c.println (word + " is a palindrome");
else
c.println (word + " is not a palindrome");
str.equalsIgnoreCase(word);
// Place your program here. 'c' is the output console
} // main method
} // PalinDrome class
我已經創建了迴文項目作爲我的考試項目的一部分。我希望字母以三角形的形狀出現。你有什麼可以做到的嗎?如何製作文本三角形文本框
而不是每次使用字符串聯創建新的字符串時,都應該使用StringUtils來反轉字符串並僅連接一次到原來的。 – Quetzalcoatl