您的位置:首页 > 其它

44.将一个数各个偶数位取出,并从低位往高位输出

2015-06-05 23:07 309 查看
给定程序中,函数fun的功能是:将形参n中,各位上位偶数的书取出,并按原来从高到低位相反的顺序组成一个新的数,并作为函数值得返回。

#include<stdio.h>
unsigned long fun(unsigned long n)
{
unsigned long x = 0;
int t;
while (n)
{
t = n % 10;
if (t % 2 == 0)
x = x * 10 + t;
n = n / 10;
}
printf("%ld\n", x);
getchar();
return x;
}
int main()
{
unsigned long n = -1;
while (n > 99999999 || n < 0)
{
printf("Please input(0<n<999999999):");
scanf_s("%ld", &n);

}
printf("\nThe result is:%ld\n", fun(n));
getchar();
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: