编写一个程序,求回文数.
问题描述:
编写一个程序,求回文数.
答
int x,y,s=0;
cin>>x;
y=x;
while(x!=0)
{
s=s*10+(x%10);
x=x/10;
}
if(y==s)
cout