判断回文串
Posted 辰峰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断回文串相关的知识,希望对你有一定的参考价值。
代码如下:
package ClassDemo;
import java.util.Scanner;
public class CheckPalindrome {
public static void main (String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Enter a string: ");
String s = input.nextLine();
int low = 0;
int high = s.length()-1;
boolean flag = true;
while (low < high) {
if(s.charAt(low) != s.charAt(high)) {
flag = false;
break;
}
low++;
high--;
}
if (flag) {
System.out.println(s + " 是回文串");
} else {
System.out.println(s + " 不是回文串");
}
}
}
以上是关于判断回文串的主要内容,如果未能解决你的问题,请参考以下文章
用递归判断字符串是不是为回文串(C语言) 用递归判断字符串是不是为回文串(C语言)