摘要: class Solution { public: bool isPalindrome(int x) { int ret = 0; while (x > ret){ int remainder = x % 10; if (remainder == 0 && ret == 0){ ... 阅读全文
posted @ 2017-09-17 21:48 nosaferyao 阅读(124) 评论(0) 推荐(0) 编辑