太简单了。
2024-04-09 20:12:15
发布于:广东
7阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main()
{
string str, ans = "";
cin >> str;
for(int i = str.size() - 1; i >= 0; i--)
ans += str[i];
if(ans == str) cout << "Yes" << endl;
else cout << "No" << endl;
return 0;
}
这里空空如也
有帮助,赞一个