1 import java.util.*; 2 /** 3 * 4 * @author tunzao 5 * @version 1.0 May 6, 2011 6 * 7 */ 8 public class Palindromes 9 {10 public static void main(String[] args)11 {12 Scanner in = new Scanner(System.in);13 while(in.hasNext())14 {15 String s = in.nextLine();16 if (s.length() == 0)17 break;18 char[] . Read More
posted @ 2011-05-07 23:23 吞枣 Views(225) Comments(0) Diggs(1)