#include <iostream> #include <string> #include <algorithm> using namespace std; //判断是否为回文,只要确定反转后是否相同即可确定 bool word(string s) { string temp = s; reverse(s.begin(), s.end()); if(temp != s) return false; return true; } int main() { string s; int len...