给定程序中,函数fun的功能是:将形参n中,各位上为偶

给定程序中,函数fun的功能是:将形参n中,各位上为偶数的数取出,并按原来从高位到低位的顺序组成一个新的数,并作为函数值返回。
例如,从主函数输入一个整数:27638496,函数返回值为:26846。
请在程序的下划线处埴入正确的内容并把下划线删除.使程序得出正确的结果。 

注意:

源程序存放在考生文件夹下的BLANK1.C中。
不得增行或删行,也不得更改程序的结构!

/**********code.c**********/
#include <stdio.h>
unsigned long fun(unsigned long n)
{
unsigned long x=0, s, i;
int t;
s=n;
i=①______;
while(②______)
{
t=s%10;
if(t%2==0)
{
x=x+t*i;
i=③______;
}
s=s/10;
}return x;
}void 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));
}
/**********-code.c**********/
答案
第1空:1
第2空:s>0
第3空:i*10

题目信息

题号:7641
题型:填空题
难度:普通