主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
小王桐学
2024年2月23日 20:50
字符串去特定字符 题解:C
P1362
回复 0
|
赞 0
|
浏览 446
#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; }
莫小七
2020年2月24日 11:57
1362字符串去特定字符(用string函数)
P1362
回复 0
|
赞 1
|
浏览 8.1k
#include<iostream> #include<cstring> #include<string> using namespace std; int main() { string s; while (cin >> s) { char c; cin >> c; int pos = 0; while ((pos = s.find(c)) != -1) { s.erase(pos, 1); } cout << s << en...
题目
字符串去特定字符
题解数量
2
发布题解
快速答疑
热门题解
1
1362字符串去特定字符(用string函数)
2
字符串去特定字符 题解:C