回文数

class Solution {
public:
    bool isPalindrome(int x) {
        if(x<0) return false;//排除负数
        string str_x = to_string(x);
        std::reverse(str_x.begin(),str_x.end());
        stringstream stream(str_x);
        int result;//最好将声明放在开头
        stream >> result;
        return x == result;//比较得出结果
    }
}

 

posted @ 2019-05-29 16:37  Austin_anheqiao  阅读(99)  评论(0编辑  收藏  举报