题解 | 字符串去特定字符
字符串去特定字符
https://www.nowcoder.com/practice/d5d0450134db4cb994a1b323a35262da
#include <iostream>
using namespace std;
int main() {
string str;
char c;
while (cin >> str) {
cin >> c;
for (int i = 0; i < str.size(); i++) {
if (str[i] == c) {
for (int j = i; j < str.size() - 1; j++) {
str[j] = str[j + 1];
}
str.pop_back();
i--;
}
}
cout << str << endl;
}
}
// 64 位输出请用 printf("%lld")

查看16道真题和解析