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