码迷,mamicode.com
首页 > 其他好文 > 详细

九度oj 题目1049:字符串去特定字符

时间:2017-02-24 22:26:57      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:内存   time   strong   out   log   string   size   字符   space   

题目1049:字符串去特定字符

时间限制:1 秒

内存限制:32 兆

特殊判题:

提交:10173

解决:4611

题目描述:

输入字符串s和字符c,要求去掉s中所有的c字符,并输出结果。

输入:

测试数据有多组,每组输入字符串s和字符c。

输出:

对于每组输入,输出去除c字符后的结果。

样例输入:
heallo
a
样例输出:
hello

 1 #include <iostream>
 2 #include <string>
 3 using namespace std;
 4 
 5 int main(){
 6     string s;
 7     char c;
 8     while(cin >> s >> c){
 9         for(int i = 0; i < s.length(); i++)
10             if(s[i] != c)
11                 cout << s[i];
12         cout << endl;
13     }
14     return 0;
15 }

 

 

九度oj 题目1049:字符串去特定字符

标签:内存   time   strong   out   log   string   size   字符   space   

原文地址:http://www.cnblogs.com/qinduanyinghua/p/6440436.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!