编程题:(字符串,下标法访问数组元素):删除一个字符串中的某一个字符,字符串和字符都通过键盘输入。
发布网友
发布时间:2022-10-02 16:30
我来回答
共1个回答
热心网友
时间:2023-10-30 23:43
#include<stdio.h>
void main()
{
char buff[100];
char c;
int i = 0;
printf("请输入字符串\n");
gets(buff);
printf("请输入要删除的字符\n");
scanf("%c", &c);
while (buff[i] != '\0')
{
if (buff[i] == c)
{
while (buff[i] != '\0')
{
buff[i] = buff[i+1];
++i;
}
goto PRINT;
}
++i;
}
printf("字符串中没有该字符!\n");
return;
PRINT:
printf("删除字符后的字符串:\n");
puts(buff);
}