题目描述:
输入字符串s和字符c,要求去掉s中所有的c字符,并输出结果。
输入:
测试数据有多组,每组输入字符串s和字符c。
输出:
对于每组输入,输出去除c字符后的结果。
样例输入:
goaod a
样例输出:
good
思路:
代码:
#include<iostream> using namespace std; int main(){ while(1){ string s; char c; //cout<<"输入字符串:"<<endl; cin>>s; //cout<<"输入字符:"<<endl; cin>>c; s.erase(remove(s.begin(),s.end(),c),s.end()); cout<<s<<endl; } return 0; }
结果:
但是编译错误,不知道为啥