[LeetCode]Palindrome Number
题意:又是回文判断:该数是否是回文数
原题来自:https://leetcode.com/problems/palindrome-number/
分析:回文真多,直接把数反转来判断是否相等。
1 class Solution { 2 public: 3 bool isPalindrome(int x) { 4 int temp = x; 5 long long res = 0; 6 7 if (x < 0) 8 { 9 return false; 10 } 11 12 while (temp > 0) 13 { 14 res = res * 10 + temp % 10; 15 temp = temp / 10; 16 } 17 18 return (res == x) ? true : false; 19 } 20 };
作者:orange1438 出处:http://www.cnblogs.com/orange1438/ 本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。