将s所指字符串中下标为偶数同时ASCII值为奇数的字符删除,s所指字符串中剩下的字符形成新串 放在t所指的数组中。
#include <conio.h>
#include <stdio.h>
#include <string.h>
void fun(char *s, char t[])
{ int i,j=0;
for (i=0;i<strlen(s);i++)
if (i%2==1&&s[i]%2==0) t[j++]=s[i];
else ;
t[j] ='\0';
}
main()
{
char s[100], t[100];
clrscr();
printf("\nPlease enter string S:"); scanf("%s", s);
fun(s, t);
printf("\nThe result is: %s\n", t);
这个是我编的