C语言实验——删除指定字符
Time Limit: 1000MS Memory Limit: 65536KB
Problem Description
从键盘输入一个字符串给str和一个字符给c,删除str中的所有字符c并输出删除后的字符串str。
Input
第一行是一个字符串,不超过100个字符;
第二行是一个字符。
第二行是一个字符。
Output
删除指定字符后的字符串。
Example Input
sdf$$$sdf$$ $
Example Output
sdfsdf
Hint
Author
参考代码
#include<stdio.h>
#include<string.h>
int main()
{
char str[100],i,c;
gets(str);
scanf("%c",&c);
for(i = 0; i < strlen(str); i++)
{
if(str[i] != c)
printf("%c",str[i]);
}
return 0;
}