码迷,mamicode.com
首页 > 其他好文 > 详细

9. 回文数

时间:2020-03-15 18:44:40      阅读:41      评论:0      收藏:0      [点我收藏+]

标签:span   class   bsp   for   return   push   tor   back   color   

 1 class Solution 
 2 {
 3 public:
 4     bool isPalindrome(int x) 
 5     {
 6         if(x < 0) return false;
 7         vector<int> nums;
 8         while(x)
 9         {
10             nums.push_back(x % 10);
11             x /= 10;
12         }
13         int n = nums.size();
14         for(int i = 0;i < n;i ++)
15         {
16             if(nums[i] != nums[n - i - 1]) return false;
17         }
18         return true;
19     }
20 };

 

9. 回文数

标签:span   class   bsp   for   return   push   tor   back   color   

原文地址:https://www.cnblogs.com/yuhong1103/p/12499099.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!