设计一个判断回文数的函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设计一个判断回文数的函数相关的知识,希望对你有一定的参考价值。
回文数:回文数也是一个数字,数字的特点是正反序是同一个数字,例如:12321,3443,56765....。
代码如下:
bool JudgeIsPalindromicNumber(int num)
{
int arr[20] = { 0 };
int i = 0,j=0,count=0;
while (num)
{
arr[i] = num % 10;
num = num / 10;
count++;
i++;
}
for (i = 0, j = count-1; i <= j; i++, j--)
{
if (arr[i] != arr[j])
{
return false;
}
}
return true;
}
测试用例如下:
int main()
{
int num = 0;
cout << "请输入一个数:" << endl;
cin >> num;
if (JudgeIsPalindromicNumber(num))
{
cout << "是回文数" << endl;
}
else
{
cout << "不是回文数" << endl;
}
system("pause");
return 0;
}
输入1234,则输出结果如下:
输入12321,则输出结果如下:
本文出自 “零点时光” 博客,请务必保留此出处http://10741764.blog.51cto.com/10731764/1742699
以上是关于设计一个判断回文数的函数的主要内容,如果未能解决你的问题,请参考以下文章