简单
2023-09-26 20:21:07
发布于:四川
3阅读
0回复
0点赞
#include<iostream>
#include<string>
#include<algorithm>
using namespace std;
int main(){
string a, a1;
cin >> a;
a1 = a;
reverse(a.begin(), a.end());
if (a == a1){
cout << "Yes";
}
else{
cout << "No";
}
return 0;
}
这里空空如也
有帮助,赞一个