题解 1196: 去掉空格

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

筛选

如何实现输入多行之后 再输出相应的结果

摘要:解题思路:在主函数中定义两个字符串a,b;一个字符串流ss;在第一个while循环中使用a和ss实现多行的输入;在第二个while循环中使用a,ss和b实现相应行数去掉空格之后的输出b。注意事项:参考……

好用的STL双端队列

摘要:#include<bits/stdc++.h> using namespace std; deque<char>q; int main() { char c[100]; while(c……

1196: 去掉空格

摘要:#这个代码是适配一次性输入的代码,对于dev或者vs等运行环境一行一行输入的话可能会出现输入一次转换一次的问题,稍微改进即可。 ```cpp #include #include #includ……

1196: 去掉空格

摘要:```cpp #include #include using namespace std; int main() { string str,temp; while(get……

1196: 去掉空格

摘要:```cpp #include using namespace std; int main() { char s[1000]; while(gets(s)) { ……

去掉空格(简单C++)

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

1196: 去掉空格

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int yw;int main(){ while(getline(……

1196: 去掉空格

摘要:关键是运用find()函数和erase()函数。#include<bits/stdc++.h> using namespace std;   int main(){     vector<in……