此题题解
2023-02-07 14:00:33
发布于:北京
180阅读
0回复
0点赞
很久没发题解了,主要是我前几天在赶作业
这道题其实很简单
这道题我的核心思想就是string类型的str倒序装入ans中,然后两个string类型的变量进行比较
接下来为代码段
#include <bits/stdc++.h>
using namespace std;
int main()
{
string str, ans = "";
cin >> str;
for(int i = str.size() - 1; i >= 0; i--)
ans += str[i];
if(ans == str) cout << "Yes" << endl;
else cout << "No" << endl;
return 0;
}
这里空空如也
有帮助,赞一个