发布网友 发布时间:2024-10-24 02:56
共3个回答
热心网友 时间:2024-10-28 20:16
上图是运行结果;
把你的程序改了一点点就好了,如下;(此程序貌似只针对字符串,,而且运行时需要等一下,反应不是特别快,祝你好运哈!!!)
#include <stdio.h>
#include <string.h>
char fun(char *s, char t[])
{int i,k,j=0,n=0;char m[100]
;
for(i=0;s[i]!='\0';i++,i++)
m[j++]=s[i];
for(k=0;k<j;k++)
m[k]=(int)m[k];
for(j=0;j<k;j++)
{if (m[j]%2==0)t[n++]=m[j];}t[n++]='\0';return t[n];}
main()
{ char s[300], t[300];
printf("\nPlease enter string S:");
scanf("%s", &s); t[300]=fun(s, t);
printf("\nThe result is: %s\n", t );
}
热心网友 时间:2024-10-28 20:10
void fun(const char *s, char t[])
{
int i = 0;
while(*s!='\0')
{
int temp = (int)*s;
if(temp%2 == 0){
t[i++]=*s;
}
s += 2;
}
t[i]='\0';
}
热心网友 时间:2024-10-28 20:11
{if (m[j]%2==0)
t[n]=m[j];}
t[n]='\0';
}
修改为
{if (m[j]%2==0)
t[n++]=m[j];}
}
t[n]='\0';