编写一个函数,判断某数字是否是回文数字。
public class PalindromeNumber { public static void main(String[] args) { // TODO Auto-generated method stub Scanner scan = new Scanner(System.in); System.out.println("请输入数字:"); String strNum = scan.next(); boolean result = isPalindrome(strNum); System.out.println(result); } public static Boolean isPalindrome(String str){ boolean result=false; for(int i=0; i<str.length()/2;i++){ if(str.charAt(i) == str.charAt(str.length()-1-i)){ result=true; }else{ return result; } } return result; }
以上就是java怎么判断一个数是不是回文数的详细内容,
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)