题解 1196: 去掉空格

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

筛选

去掉空格 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[10000],b[10000],i,j; while(gets……

去掉空格(超级容易理解的C语言版)

摘要:解题思路:输入多行带空格的可以用gets,遇到空格便把后面一个元素赋给当前空格,判断连续多个空格可以用while。注意事项:因为最后的字符串要加上&#39;\0&#39;,所以循环变量定义在函数内而不……

1196: 去掉空格

摘要:解题思路:注意事项:参考代码:while True:     try:         s = input()         print(s.replace(&#39; &#39;, &#39……

不能再复杂了QWQ

摘要:解题思路:    传统思路注意事项:    遇到多个空格直接返回上一行qaq参考代码:#include<stdio.h>#include<string.h>#define HANG 100#defin……

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

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

1196: 去掉空格

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

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

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

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

摘要: 首先输入一个不超过80个字符的字符串,然后判断是否有空格有空格,就去掉。输出字符串,注意是字符串,如果输入'End of file'就结束,完了。 代码: #include ……