运用知识: 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 + "不是一个回文"); } }