码迷,mamicode.com
首页 > 编程语言 > 详细

使用循环判断数组元素是否对称

时间:2020-10-29 09:20:36      阅读:23      评论:0      收藏:0      [点我收藏+]

标签:system   循环   builder   test   反转   print   string   end   star   

@Test
    public void b() {

        int[] arr = new int[]{1, 2, 3, 4, 5, 4, 3, 2, 1};

        int start = 0;
        int end = arr.length - 1;
        while (start <= end) {

            if (arr[start] != arr[end]) {

                System.out.println("此数组不对称");
                System.exit(0);

            } else {
                start++;
                end--;
            }

        }

        System.out.println("此数组是对称的!!");
    }

判断字符串元素是否对称

@Test
    public void a() {

        //将字符串反转,反转之后的字符串和原本的比较
        String str = "ABCCBA";
        StringBuilder strRev = new StringBuilder(str).reverse();
        if (str.contentEquals(strRev)) {
            System.out.println("该字符串是对称的!");
        } else {

            System.out.println("该字符串不是对称的!");
        }


    }

使用循环判断数组元素是否对称

标签:system   循环   builder   test   反转   print   string   end   star   

原文地址:https://www.cnblogs.com/liqiliang1437/p/13887279.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!