Time Limit: 1s
Memory Limit: 128MB
정수를 입력으로 받아 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.
* Line 1 : 테스트케이스 T (1~1,000)
* Line 2 ~ T+1 : 정수 (1~1,000,000)
* Line 1 ~ T : palindrome 숫자일 경우 Y, 아닐경우 N을 출력
4 1 1221 12321 132
Y Y Y N
JAVA2015 PE6.3