主要的思想:求出原数的逆序数,比较逆序数和原的大小。
#include<iostream>
using namespace std;
bool test(int a)
{
int temp=a;
int b=0;
while(temp!=0)
{ //求它的逆序数
b=b*10;
b+=temp%10;
temp/=10;
}
return a==b;
}
int main()
{
int a;
while(1)
{
cin>>a;
cout<<test(a)<<endl;
}
return 0;
}