去掉空格 (C++代码) 摘要:解题思路:用STL的erase来删除空格注意事项:参考代码:#include <deque>#include <algorithm>#include <iostream>#include <cstdl…… 题解列表 2018年01月18日 0 点赞 0 评论 777 浏览 评分:0.0
去掉空格 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; int main() { string st…… 题解列表 2018年05月16日 0 点赞 0 评论 587 浏览 评分:0.0
去掉空格 (C++代码) 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <vector> #include <…… 题解列表 2018年11月03日 0 点赞 0 评论 402 浏览 评分:0.0
去掉空格 (C++代码)水 摘要:解题思路: 水水水,利用string参考代码:#include<bits/stdc++.h> using namespace std; int main(){ string kk; …… 题解列表 2018年12月14日 0 点赞 0 评论 421 浏览 评分:0.0
去掉空格 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; int main() { string s;…… 题解列表 2019年04月14日 0 点赞 0 评论 392 浏览 评分:0.0
去掉空格-题解(C++代码) 摘要:#### 原题链接:[去掉空格](https://www.dotcpp.com/oj/problem.php?id=1196 "去掉空格") #### 解题思路: **1、去掉空格的题目,很明…… 题解列表 2019年07月20日 0 点赞 0 评论 607 浏览 评分:9.9
去掉空格-题解(C++代码) 摘要: #include #include #include using namespace std; const int maxn=100; int…… 题解列表 2019年12月30日 0 点赞 0 评论 657 浏览 评分:9.0
去掉空格-题解(C++代码) 简单粗暴硬解法 摘要:#include #include using namespace std; int main() { char a[1000]; char b[1000]; i…… 题解列表 2020年02月03日 0 点赞 0 评论 376 浏览 评分:0.0
去掉空格-题解(C++代码)(简单) 摘要: char str[1000]; while(!cin.getline(str,1000).eof()) { for(int i=0; i…… 题解列表 2020年02月14日 0 点赞 0 评论 341 浏览 评分:0.0
去掉空格-题解(C++代码) 快来看我!!!!!!! 摘要: #include #include using namespace std; int main() { string word; while (getline(cin, …… 题解列表 2020年03月07日 0 点赞 0 评论 517 浏览 评分:7.3