/ XMU_ACM / 题库 /

Alphabet(多组测试数据样题)

Alphabet(多组测试数据样题)

Description

大家都认识26个英文字母吧

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
a b c d e f g h i j k l m n o p q r s t u v w x y z

字母表

其中 A H 等都是镜像(左右对称)字母,i m n u 等则不是,当然,d和b、p和q也是镜像的。

现在给你一串字母,问这个字母串是不是也是镜像的。

Format

Input

多组测试数据
每组测试数据一行,一个由大小写字母组成的长度为L的字符串。(L<=1000)

Output

对于每组测试数据输出一行,Y或N,分别表示这个字符串是镜像的,或不是镜像得得。

Sample 1

Input

ioi
IOI
qop

Output

N
Y
Y

Limitation

1s, 128MiB for each test case.

Hint

//多组测试数据情况下的字符串回显
#include <stdio.h>
#include <string.h>
char s1[100];
int main()
{
    int a, b;
    while(scanf("%s",s1)!=EOF) // keep scanf until the end 
    {
        printf("%s\n",s1);
        //insert your code here
    }
    return 0;
}

Source

Coolxxx