Leetcode-迴文數

3.迴文數 題目內容: 思路與代碼: 注意溢出問題。 class Solution { public: bool isPalindrome(int x) { #define Max 2147483648 //負數肯定不是迴文數,0-9的數肯定是迴文數 if(x<0) return false; if(x
相關文章
相關標籤/搜索