题解
2023-08-15 19:42:16
发布于:广东
12阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main()
{
string str;
cin >> str;
int n=str.length(),i;
bool ispalindrome=true;
for (i=0;i<n/2;i++)
{
if (str[i]!=str[n-i-1])
ispalindrome=false;
}
if (ispalindrome)
cout << "Yes";
else
cout << "No";
}
这里空空如也
有帮助,赞一个