题解 2005: 去除空格

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

筛选

去除空格 (C++代码)此处可以骚操作一波

摘要:解题思路:读入,然后,输出,循环...注意事项:这里,scanf读入字符串时会自动识别空格,并结束一次输入,循环读入即实现题目要求。参考代码:#include <stdio.h> int main(……

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

摘要:解题思路:利用字符串erase函数,删除空格并输出注意事项:参考代码:#include<iostream> #include"string" #include"algorithm" using ……

2005: 去除空格

摘要:#include <bits/stdc++.h> using namespace std; int main(){     string s;     getline(cin,s);  ……

2005: 去除空格

摘要:```cpp #include using namespace std; int main() { string s; getline(cin,s); int p……

c++去除空格

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