美文网首页
java判断字符串回文

java判断字符串回文

作者: 酷酷的美猴王 | 来源:发表于2020-07-13 20:29 被阅读0次
    public static void main(String[] args) throws Exception {
            String ss = "aghdtdhga";
            char[] cc = ss.trim().toCharArray();
            int first = 0;
            int last = cc.length - 1;
            while (first < last) {
                if (cc[first++] != cc[last--]) {
                    System.out.println("false");
                }
            }
            System.out.println("true");
    
        }
    

    相关文章

      网友评论

          本文标题:java判断字符串回文

          本文链接:https://www.haomeiwen.com/subject/hgmzcktx.html