SDUT-1176 C语言实验——删除指定字符

来源:互联网 发布:自动化学报 软件学报 编辑:程序博客网 时间:2024/09/21 08:17

C语言实验——删除指定字符

Time Limit: 1000MS Memory Limit: 65536KB
Submit Statistic Discuss

Problem Description

从键盘输入一个字符串给str和一个字符给c,删除str中的所有字符c并输出删除后的字符串str。

Input

第一行是一个字符串,不超过100个字符;
第二行是一个字符。

Output

删除指定字符后的字符串。

Example Input

sdf$$$sdf$$$

Example Output

sdfsdf

Code

#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;}