文章
145
粉丝
217
获赞
25
访问
91.8k
#include <stdio.h> #include <string.h> int main() { char s[1000],c; while(scanf("%s",s) != EOF) { scanf(" %c",&c); char *p = s; while(*p != '\0') { if(*p != c) printf("%c",*p); p++; } printf("\n"); } return 0; }
登录后发布评论
暂无评论,来抢沙发