- import java.util.Scanner;
- //注释的部分原来只能判输入断奇数位的,改进后奇数偶数的都可以判断了,不过感觉不够精炼
- public class ArrrayToll {
- private static Scanner sc;
- public static void main(String[] args) {
- sc = new Scanner(System.in);
- a: while (true) {
- System.out.println("请输入要检验的对称字符串字母,格式:abcde 无任何符号");
- String str = sc.nextLine();
- char[] ch = str.toCharArray();
- b: for (;;) {
- for (int i = 0; i < ch.length; i++) {
- int j = ch.length - 1 - i;
- while (ch[i] != ch[j]) {
- System.out.println("您输入的字母串为 '非' 对称字母串");
- break b;
- /*
- * if (ch[i] != ch[j]) {
- * System.out.println("您输入的字母串为 '非' 对称字母串"); break//原来for 那有个标记结束for,改进后去掉了 ;
- * } else
- * if (ch[i]==ch[j]&&i==j) {
- * System.out.println("您输入的字母串为对称字母串"); break ; }
- */
- }
- }
- System.out.println("您输入的字母串为对称字母串");
- break b;
- }
- }
- }
- }
复制代码
|