MT1527 回文串

2023-12-13 04:42:23

利用指针判断字符串是否为回文。(正读和反读都一样的字符串)

输入格式: 输入字符串

输出格式: 输出YES或者NO

输入:
wenew

输出:
YES

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

string x,y;

int main()
{
	cin>>x;
	
	y = x;
	reverse(y.begin(),y.end());
	
	if(x == y)
		cout<<"YES"<<endl;
	else
		cout<<"NO"<<endl;
	return 0;
}

文章来源:https://blog.csdn.net/weixin_47830774/article/details/134959302
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。