1 问题
2 方法
public class TestFile { public static void main(String[] args) { String string = "123321"; System.out.println(IsHuiwen(string)); } public static boolean IsHuiwen(String string) { char[] temp = string.toCharArray(); for(int i = 0;i < temp.length; i++) { if(temp[i] != temp[temp.length-1-i]) { return false; } } return true; } } |
3 结语
针对如何判断回文数问题,提出使用for循环判断回文数的方法,通过实验,证明该方法是有效的,未来还可以讨论其他判断回文数的更多方法。