Palindrome Number
Posted IIcyZhao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Palindrome Number相关的知识,希望对你有一定的参考价值。
Determine whether an integer is a palindrome. Do this without extra space.
class Solution
public:
bool isPalindrome(int x)
// Start typing your C/C++ solution below
// DO NOT write int main() function
if (x < 0)
return false;
int oldx = x;
int newx = 0;
while (x)
newx = newx * 10 + x % 10; // error: newx *= 10 + x % 10;
x /= 10;
return oldx == newx;
;
以上是关于Palindrome Number的主要内容,如果未能解决你的问题,请参考以下文章