题解 | 字符串去特定字符

字符串去特定字符

https://www.nowcoder.com/practice/d5d0450134db4cb994a1b323a35262da

#include <cwchar>
#include <iostream>
#include<string>
using namespace std;

int main() {
    string s;
    char c;
    while (getline(cin,s)) { // 注意 while 处理多个 case
        cin>>c;
        for(char w:s){
            if(w!=c)putwchar(w);
        }
        cout<<endl;
    }
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

牛客52811839...:实习要写出来业务和产出,你这写的像流水账没人看。项目经历也没有,换个极简简历试试
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务