问题描述: abccba是一个特殊的字符串,正读反读都能读通的,这叫做回文字符串。 输入一个字符串判断是不是回文

运用知识:
1.string类中的to插入Array()方法:遍历字符串中的字符用于保存在数组中
2.标记思想:定义一个Boolean类型的变量,用于标记一个事件的状态

public static void test3() {
    Scanner sc = new Scanner(System.in);
    System.out.println("请输入一个字符串");
    String s1 = sc.next();
    char[] ch = s1.toCharArray();
    boolean flag = true;
    for (int i = 0; i < ch.length; i++) {
        if (ch[i] != ch[ch.length - 1 - i]) {
            flag = false;
        }
    }
    if (flag) {
        System.out.println(s1 + "是一个回文");
    } else {
        System.out.println(s1 + "不是一个回文");
    }

}
上一篇:【LeetCode841】钥匙和房间(dfs)


下一篇:总之就是 | CSP-S2 2021 (部分)题解