真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網站制作重慶分公司

PalindromeNumber

class Solution {
public:
    bool isPalindrome(int x) {
        int x1=x;
        int x2=x;
        int count=0;
        int num=0;
        int sum=0;
        while(x1>0)//得到未知整數(shù)的位數(shù)
        {
            x1=x1/10;
            count++;
        }
        for(int i=0;i<=count;i++)
        {
            sum=sum*10+num;//逆置原整數(shù)
            num=x2%10;//除10取余數(shù);
            x2=x2/10;
        }
        if(sum==x)
        return true;
        else
        return false;
    }
};

當前文章:PalindromeNumber
文章出自:http://weahome.cn/article/poiose.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部