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