解题思路:
注意事项:
看了题解才知道原来是可以又空格的,题目就是个骗子。男人的嘴,骗人的鬼
参考代码:
#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <vector> #include <string> #include <queue> #include <algorithm> #include <stdio.h> #define N 27 using namespace std; int main(int argc, char** argv) { string s; char ch; getline(cin, s); cin >> ch; string::iterator it = s.begin(); while (it < s.end()) { it = find(it, s.end(), ch); if (it != s.end()) it = s.erase(it); else break; } cout << s; return 0; }
0.0分
0 人评分