标签:++ als color class ram col code div stat
1.是否是 回文
/** * 判断是不是回文数 * @param str * @return */ public static boolean isBack(String str){ int N = str.length(); for(int i=0;i<N/2;i++){ if(str.charAt(i)!=str.charAt(N-i-1)){ return false; } } return true; }
标签:++ als color class ram col code div stat
原文地址:http://www.cnblogs.com/bee-home/p/7518045.html