Palindrome 수

less than 1 minute read

DESCRIPTION

정수를 입력으로 받아 palindrome 숫자인지 체크하는 프로그램을 작성하세요. 왼쪽에서 오른쪽으로 읽는 것과 오른쪽에서 왼쪽으로 읽는 것이 동일할 경우 palindrome 숫자라고 합니다.

Write a test program that prompts the user to enter an integer and reports whether the integer is a palindrome. A number is palindrome if it reads the same from right to left and from left to right.

INPUT

  • Line 1 : 테스트케이스 T (1~1,000)

  • Line 2 ~ T+1 : 정수 (1~1,000,000)

OUTPUT

  • Line 1 ~ T : palindrome 숫자일 경우 Y, 아닐경우 N을 출력

SAMPLE INPUT

4
1
1221
12321
132

SAMPLE OUTPUT

Y
Y
Y
N

Categories: ,

Updated:

Comments