回文數
bool isPalindrome(int x)
{
if(x<0)
return false;
long y=0;
int z=x;
while(z!=0)
{
y=y*10+z%10;
z/=10;
}
if(y==x)
return true;
return false;
}
Leetcode third day
最新推荐文章于 2024-06-14 10:48:09 发布