9. 回文数
Posted code_kd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了9. 回文数相关的知识,希望对你有一定的参考价值。
题目链接:
https://leetcode.cn/problems/palindrome-number/
class Solution
public:
bool isPalindrome(int x)
if(x<0) return false;
string s = to_string(x);
for(int i = 0;i<s.size()/2;i++)
if(s[i]!=s[s.size()-i-1]) return false;
return true;
;
以上是关于9. 回文数的主要内容,如果未能解决你的问题,请参考以下文章