题解 1196: 去掉空格

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

去掉空格-题解(C++代码)

摘要:#### 原题链接:[去掉空格](https://www.dotcpp.com/oj/problem.php?id=1196 "去掉空格") #### 解题思路: **1、去掉空格的题目,很明……

去掉空格 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; int main() { string s;……

去掉空格 (C++代码)水

摘要:解题思路:    水水水,利用string参考代码:#include<bits/stdc++.h> using namespace std; int main(){ string kk; ……

去掉空格 (C++代码)

摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <vector> #include <……

去掉空格 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; int main() { string st……

去掉空格 (C++代码)

摘要:解题思路:用STL的erase来删除空格注意事项:参考代码:#include <deque>#include <algorithm>#include <iostream>#include <cstdl……