题解
2024-10-26 10:35:12
发布于:广东
0阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
string a;
cin>>a;
string b=a;
reverse(b.begin(),b.end());
if(a==b){
cout<<"Yes";
}
else{
cout<<"No";
}
return 0;
}
这里空空如也
有帮助,赞一个