Advertisement
AmidamaruZXC

Untitled

Oct 22nd, 2020
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include <iostream>
  2. #include <algorithm>
  3. #include <locale>
  4.  
  5. using namespace std;
  6.  
  7. int main() {
  8. char c;
  9. string s;
  10. cin >> c;
  11. cin >> s;
  12. s.erase(remove(s.begin(), s.end(), c), s.end());
  13. cout << s;
  14.  
  15. return 0;
  16. }
  17.  
  18.  
  19.  
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement