题解 1196: 去掉空格

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

筛选

1196: 去掉空格

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

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

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

好用的STL双端队列

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

去掉空格 (C++代码)

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

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

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> #include<cmath> #include<string> #include <v……

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

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

1196: 去掉空格

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

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

摘要:解题思路:        两个点:                1、用string.find()找到空格所在的位置,用string.erase()擦除空格这一字符,直到字符串中没有空格      &nb