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

回文数

时间:2014-11-25 22:46:30      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   sp   div   log   bs   as   

回文数:如果一个正数顺着和反过来都一样(如12321,反过来也是12321),就称为回文数。

条件:回文数不能以0开头

最小回文数是:1

//判断一个数是否是回文数
void  isPN(int num)
{
    int  temp=num;
    int  a=0;
    //使用循环吧数字反转
    while(temp!=0)
    {
         a*=10;
         a+=num%10;
         num/=10;      
    }
     if(temp==a)
    {printf("%d是回文数",num);}
    else
    {printf("%d不是回文数",num);}
}    

 

回文数

标签:style   blog   color   使用   sp   div   log   bs   as   

原文地址:http://www.cnblogs.com/duduSunny/p/4121766.html

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