判断一个整型数是否为“回文数”,如1221,232,5。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#include <iostream>
using namespace std;
void isHuiwen( int number)
{
int n = 0; //余数.
int m = number;
while (m != 0)
{
n = n*10 + m %10; //number的最低位变为n的最高位
m = m /10;
}
if (n==number)
cout << "yes" << endl;
else
cout << "no" << endl;
}
int main()
{
int number;
while (cin >> number)
isHuiwen(number);
return 0;
}
|
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
原文链接:http://blog.csdn.net/wtyvhreal/article/details/42193431