删除字符串中的字符。
输入一个字符串s,再输入一个字符c,将字符串s中出现的所有字符c删除。要求定义并调用函数delchar(s,c),它的功能是将字符串s中出现的所有c字符删除。输入输出示例...
输入一个字符串s,再输入一个字符c,将字符串s中出现的所有字符c删除。要求定义并调用函数delchar(s,c),它的功能是将字符串s中出现的所有c字符删除。
输入输出示例:
Input a string:happy new year
Input a char:a
After deleted,the string is:hppy new yer 展开
输入输出示例:
Input a string:happy new year
Input a char:a
After deleted,the string is:hppy new yer 展开
1个回答
展开全部
#include<stdio.h>
void delchar(char *s,char c)
{
int i=0;
printf("After delected,the string is:");
while(s[i]!='\0')
{
if(s[i]!=c)
printf("%c",s[i]);
i++;
}
printf("\n");
}
void main()
{
char s[50];
char c;
printf("Input a string:");
gets(s);
printf("Input a char:");
getchar();//接受回车换行符
c=getchar();
delchar(s,c);
}
void delchar(char *s,char c)
{
int i=0;
printf("After delected,the string is:");
while(s[i]!='\0')
{
if(s[i]!=c)
printf("%c",s[i]);
i++;
}
printf("\n");
}
void main()
{
char s[50];
char c;
printf("Input a string:");
gets(s);
printf("Input a char:");
getchar();//接受回车换行符
c=getchar();
delchar(s,c);
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询