如何实现输入多行之后 再输出相应的结果 摘要:解题思路:在主函数中定义两个字符串a,b;一个字符串流ss;在第一个while循环中使用a和ss实现多行的输入;在第二个while循环中使用a,ss和b实现相应行数去掉空格之后的输出b。注意事项:参考…… 题解列表 2024年12月07日 0 点赞 0 评论 109 浏览 评分:0.0
好用的STL双端队列 摘要:#include<bits/stdc++.h> using namespace std; deque<char>q; int main() { char c[100]; while(c…… 题解列表 2024年07月26日 0 点赞 0 评论 67 浏览 评分:0.0
1196: 去掉空格 摘要:#这个代码是适配一次性输入的代码,对于dev或者vs等运行环境一行一行输入的话可能会出现输入一次转换一次的问题,稍微改进即可。 ```cpp #include #include #includ…… 题解列表 2023年02月23日 0 点赞 1 评论 96 浏览 评分:9.9
1196: 去掉空格 摘要:```cpp #include #include using namespace std; int main() { string str,temp; while(get…… 题解列表 2022年12月30日 0 点赞 0 评论 202 浏览 评分:9.9
1196: 去掉空格 摘要:```cpp #include using namespace std; int main() { char s[1000]; while(gets(s)) { …… 题解列表 2022年12月06日 0 点赞 0 评论 122 浏览 评分:9.9
去掉空格(简单C++) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; #include<string> int main() { string…… 题解列表 2022年11月03日 0 点赞 0 评论 389 浏览 评分:9.9
1196: 去掉空格 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int yw;int main(){ while(getline(…… 题解列表 2022年05月10日 0 点赞 0 评论 110 浏览 评分:0.0
Hifipsysta-1196-去掉空格(C++代码) 摘要:```cpp #include #include using namespace std; int main(){ string str, str_dup; while…… 题解列表 2022年02月05日 0 点赞 0 评论 149 浏览 评分:0.0
1196: 去掉空格 摘要:关键是运用find()函数和erase()函数。#include<bits/stdc++.h> using namespace std; int main(){ vector<in…… 题解列表 2021年12月10日 0 点赞 0 评论 514 浏览 评分:0.0