题解 2005: 去除空格

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

筛选

最普通的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void f(char a[],int n){    int i;    for(i=0;i<n;i……

cout直接输出

摘要:```c++ #include #include using namespace std; int main() { string str; getline(ci……

c++去除空格

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

2005: 去除空格

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

C语言最简单的解法

摘要:解题思路:其实思路很简单,就是用getchar()函数读取字符,如果是空格不输出。注意事项:参考代码:#include<stdio.h> int main() {     int x;     ……

2005: 去除空格

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

去除空格c语言解法

摘要:解题思路:把空格的那个位置置0,输出的时候输出非0即可注意事项:输入的时候用gets()参考代码:#include <stdio.h>#include <string.h> int main(){ch……