c++实现判断回文串

“回文串”是一个正读和反读都一样的字符串,比如“level”或者“noon”等等就是回文串。

#include
#include
using namespace std;
bool panduan(string s){
   
	int len = s.length()

你可能感兴趣的:(C++)