去掉空格-题解(C++代码)14行代码 摘要:```cpp #include #include #include//string没有remove函数所以用algorithm里的remove using namespace std; in…… 题解列表 2020年10月20日 0 点赞 0 评论 259 浏览 评分:0.0
1196: 去掉空格 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int yw;int main(){ while(getline(…… 题解列表 2022年05月10日 0 点赞 0 评论 110 浏览 评分:0.0
去掉空格-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main() { string a; while (g…… 题解列表 2020年11月25日 0 点赞 0 评论 200 浏览 评分: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
好用的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
去掉空格 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; int main() { string st…… 题解列表 2018年05月16日 0 点赞 0 评论 587 浏览 评分:0.0
去掉空格-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> #include<cmath> #include<string> #include <v…… 题解列表 2020年07月02日 0 点赞 0 评论 277 浏览 评分:0.0
去掉空格 (C++代码)水 摘要:解题思路: 水水水,利用string参考代码:#include<bits/stdc++.h> using namespace std; int main(){ string kk; …… 题解列表 2018年12月14日 0 点赞 0 评论 421 浏览 评分:0.0
1196: 去掉空格 摘要:关键是运用find()函数和erase()函数。#include<bits/stdc++.h> using namespace std; int main(){ vector<in…… 题解列表 2021年12月10日 0 点赞 0 评论 514 浏览 评分:0.0
去掉空格-题解(C++代码) 摘要:解题思路: 两个点: 1、用string.find()找到空格所在的位置,用string.erase()擦除空格这一字符,直到字符串中没有空格 &nb 题解列表 2020年09月11日 0 点赞 0 评论 288 浏览 评分:0.0