欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【leetcode】每日一题(9 回文数)

程序员文章站 2024-03-09 08:15:17
...

【leetcode】每日一题(9 回文数)
代码实现:
借鉴了一个极妙的方法,反转后两数相等

bool isPalindrome(int x){
    if(x<0)
    return false;//直接杀死负数

    long y=0;
    int temp=x;
    while(temp!=0){
        y=y*10+temp%10;
        temp/=10;
    }
    if(y==x)
    {
        return true;
    }
    return false;
}