PTA函数题:将整数中每一位上为偶数的数依次取出构成新数
作者:互联网
将整数中每一位上为偶数的数依次取出构成新数
给定函数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)
{
long x;
long y=1;
*t = 0;
while (s>0)
{
x = s%10;
if(x%2 == 0)
{
*t = x*y + *t;
y=y*10;
}
s=s/10;
}
}
标签:10,新数,void,long,偶数,PTA,fun 来源: https://blog.csdn.net/mwbdynn/article/details/120614770