给定函数fun的功能是:将长整型数中每一位上为偶数的数依次取出,构成一个新数放在t中。高位仍在高位,低位仍在低位。例如,当s中的数为:87653142时,t中的数为:8642。。
函数接口定义:
void fun (long s, long *t);
其中 s 和t 是用户传入的参数。函数将整数 s 中每一位上为偶数的数依次取出,构成一个新数放在t指针所指的变量中。
裁判测试程序样例:
#include <stdio.h>
void fun (long s, long *t);
int main()
{ long s, t;
scanf("%ld", &s);
fun(s, &t);
printf(“The result is: %ld\n”, t);
return 0;
}
/* 请在这里填写答案 */
输入样例:
87653142
输出样例:
The result is: 8642
void fun (long s, long *t)
{