判断是否是回文数的程序出现问题
#include<iostream>using namespace std;
int main()
{ bool flog;
int m;
cin>>m;
int hw(int m);
if(flog==1)
cout<<"m是回文数";
else cout<<"m不是回文数";
return 0;
}
int hw(int x)
{
int flog =0;
int s=0;
int n,k;
k=x;
for(;x>=1;)
{
n=x%10;
x=x/10;
// b=x10%10;
s=s*10+n;
}
if(x==s)
flog =1;
else flog=0;
return (flog);
}