运行结果出现'烫'字
请编写函数fun,其功能是将S所指字符串中除了下标为偶数、同时ASCII值也为偶数的字符外,其余全部删除;串中剩余字符所形成的一个新串放在t所指的数组中。
#include <stdio.h>
#include <string.h>
void fun(char *s, char t[])
{
int i,j=0;
for(i=0;s[i];i+=2)
if(s[i]%2==0)
t[j++]=s[i];
t[j]='\0';
}
main()
{
char s[100], t[100];
printf("\nPlease enter string S:");
scanf("%s", s);
fun(s, t);
printf("\nThe result is : %s\n", t);
}
输入ABCDEFG123456
输出246烫烫烫烫烫烫烫烫烫烫烫烫烫