寒假训练1—1

题目:
The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pronounced) reversely. For example, a Berlandish word code corresponds to a Birlandish word edoc. However, it’s easy to make a mistake during the «translation». Vasya translated word s from Berlandish into Birlandish as t. Help him: find out if he translated the word correctly.

    Input
    The first line contains word s, the second line contains word t. The words consist of lowercase Latin letters. The input data do not consist unnecessary spaces. The words are not empty and their lengths do not exceed 100 symbols.

    Output
    If the word t is a word s, written reversely, print YES, otherwise print NO.

    Examples

Input

code
edoc

Output

YES

Input

abb
aba

Output

NO

Input

code
code

Output

NO

就是判断是否为倒序,直接上代码。

#include <iostream>
#include<string>
using namespace std;
int main()
{
	char a[101], b[101];
	cin >> a >> b;
	int c = 0, e = 0, d = 0;
	for (c = 0;; c++)
	{
		if (a[c] == '\0')break;
	}
	for (e = 0;; e++)
	{
		if (b[e] == '\0')break;
	}
	if (c != e) { cout << "NO" << endl; return 0; }
	reverse(b, b+e);
	for (int i = 0; i < c; i++)
	{
		if (a[i] != b[i])d = 1;
		if (d)break;
	}
	if (d)cout << "NO" << endl;
	else cout << "YES" << endl;
}

猜你喜欢

转载自blog.csdn.net/weixin_43976373/article/details/86656159