2013-01-23 54 views
-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 

我已經創建了迴文項目作爲我的考試項目的一部分。我希望字母以三角形的形狀出現。你有什麼可以做到的嗎?如何製作文本三角形文本框

+0

而不是每次使用字符串聯創建新的字符串時,都應該使用StringUtils來反轉字符串並僅連接一次到原來的。 – Quetzalcoatl

回答

0

用戶string.format根據字符串的長度構建一個帶有 \t\n的三角形。使用另一個for循環遍歷字符串,並在每組字符前後添加適當的間距