题解 | #回文字符串#

回文字符串

https://www.nowcoder.com/practice/df00c27320b24278b9c25f6bb1e2f3b8

#include<iostream>
#include<algorithm>
using namespace std;

int main()
{
	string a;
	while(cin >> a)
	{
		string b = a;
		reverse(a.begin(),a.end());
		if(b != a)
		cout << "No!" << endl;
		else cout << "Yes!" << endl;
	}
}

全部评论

相关推荐

铁锈不腻玩家:下面那个袁先生删了,问他怎么回事,头像都换不明白
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务