用c语言编写一个程序,接受用户输入字符串;编写一个函数,讲用户的指定字符删除,再输出字符串。

2025-01-04 22:58:10
推荐回答(1个)
回答1:

# include
# define N 20
int main(void)
{
char ch[N], find;
int i;
printf("请输入字符串:");
scanf("%s", ch);
printf("请输入你要查找的字符:");
scanf("%c", &find);
for(i=0; i {
if (ch[i] != find)
putchar(ch[i]);
}

return 0;
}