#include <stdio.h>
unsigned long fun(unsigned long n)
{ unsigned long x=0, s, i;
int t;
s=n;
i=1;
while(s>0)
{ t=s%10;
if(t%2==0){
x=x+t*i; i=i*10;
}
s=s/10;
}
return x;
}
main()
{ unsigned long n=-1;
while(n>99999999||n<0)
{ printf("Please input(0<n<100000000): "); scanf("%ld",&n); }
printf("\nThe result is: %ld\n",fun(n));
}
老师,我不能理解这种程序每一步运行的步骤,比如用笔算的时候不知道怎么执行下一步?