判断是否是回文字符串
方法一:
/**
* 判断是否是回文字符串
*/
public class test4 {
public static void main(String[] args) {
String str = "12321";
int first = 0;
int last = str.length() - 1;
boolean flag = true;
while (first < last) {
if (str.charAt(first) != str.charAt(last)) {
flag = false;
break;
}
first++;
last--;
}
if (flag) {
System.out.println("是回文字符串");
} else {
System.out.println("不是回文字符串");
}
}
}
输出结果:是回文字符串