解题思路:用STL的erase来删除空格
注意事项:
参考代码:
#include <deque>
#include <algorithm>
#include <iostream>
#include <cstdlib>
#include <iterator>
#include <numeric>
#include <string>
#include <string.h>
using namespace std;
int main()
{
int k=0;
deque<string> q;
string str;
while(getline(cin,str))
{
for(int i=0;i<str.size();i++)
{
if(str[i]==' ')
{
str.erase(str.begin()+i,str.begin()+i+1);
}
}
q.push_back(str);
}
copy(q.begin(),q.end(),ostream_iterator<string>(cout,"\n"));
return 0;
}
0.0分
0 人评分
简单的a+b (C语言代码)浏览:783 |
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:932 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:783 |
printf基础练习2 (C语言代码)浏览:955 |
不会做的浏览:954 |
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:624 |
C语言程序设计教程(第三版)课后习题9.3 (C语言代码)浏览:650 |
C二级辅导-求偶数和 (C语言代码)浏览:707 |
交换Easy (C语言代码)浏览:805 |
良心推荐——>题解1049:C语言程序设计教程(第三版)课后习题11.1 (C语言描述——简单明了,时间复杂度低)浏览:1318 |