字符删除
字符串中删除一个指定的字符,要求多组测试,为什么我第一次测试是正确的,第二次测试的时候,就少了第一个字符呢?#include<stdio.h>
#include<string.h>
int main()
{
int i=0,j,t;
char a[100],b[100],s;
while(gets(a)!=NULL)
{
{
scanf("%c",&s);
i=0;
while(a[i]!='\0')
{
if(a[i]!=s)
printf("%c",a[i]);
i++;
}
}
printf("\n");
}
return(0);
}