摘要: 思路: 这道题啊,直接通过取余数反转数再对比即可。 代码: class Solution { public: bool isPalindrome(int x) { if(x<0) return false; long a = x; long res = 0; while(a!=0){ res = r 阅读全文
posted @ 2021-05-25 23:35 Mrsdwang 阅读(48) 评论(0) 推荐(0) 编辑