回文数是指一个像16461这样“对称”的数,即:将这个数的数字按相反的顺序重新排列后,所得到的数和原来的数一样。
import java.util.*; public class PalindromeV1 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("输入一个字符串: "); String word = sc.next(); int i = word.length(); int j = 0; while (j <= (i / 2) -1 && word.charAt(j) == word.charAt(i - j - 1)) j++; if (j == i / 2) System.out.println("输入字符串是回文."); else System.out.println("输入字符串不是回文."); } }