标签:style blog color sp div log as res 设计
1 bool isPalindrome(int x) { 2 int result=0; 3 //注意下面会修改x的值,所以提前保留 4 int copy_x=x; 5 if(x<0) 6 return false; 7 while(x!=0) 8 { 9 result=result*10+x%10; 10 x/=10; 11 } 12 if(result==copy_x) 13 return true; 14 else return false; 15 }
这里产生了原数字的逆序数字来判断是否是回文的,逆序的过程是边对原数字进行% 、/操作边生成逆序数字,程序设计课程的课后作业啦。
标签:style blog color sp div log as res 设计
原文地址:http://www.cnblogs.com/gaoduan/p/4055233.html