문제출처 : https://www.acmicpc.net/problem/1259
code
#include <iostream>
#include <string>
using namespace std;
int main()
{
int N, len;
string str;
while (1)
{
bool flag = true;
cin >> N;
if (N == 0) break;
str = to_string(N);
len = str.length();
for (int i = 0; i < len - 1; i++)
{
if (str[i] != str[len - 1 - i])
flag = false;
}
if (flag)
cout << "yes" << '\n';
else
cout << "no" << '\n';
}
return 0;
}
숫자를 문자열로 바꿔 비교해주었다.