题解
2026-07-17 14:03:42
发布于:广东
1阅读
0回复
0点赞
秒杀
#include<bits/stdc++.h>
using namespace std;
int main(){
string n;
cin>>n;
string m=n;
reverse(m.begin(),m.end());
if(m==n)cout<<"True";
else cout<<"False";
return 0;
}
这里空空如也

有帮助,赞一个