去掉空格 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[10000],b[10000],i,j; while(gets…… 题解列表 2017年12月13日 0 点赞 0 评论 839 浏览 评分:0.0
去掉空格(超级容易理解的C语言版) 摘要:解题思路:输入多行带空格的可以用gets,遇到空格便把后面一个元素赋给当前空格,判断连续多个空格可以用while。注意事项:因为最后的字符串要加上'\0',所以循环变量定义在函数内而不…… 题解列表 2023年02月07日 0 点赞 0 评论 57 浏览 评分:0.0
1196: 去掉空格 摘要:解题思路:注意事项:参考代码:while True: try: s = input() print(s.replace(' ', '…… 题解列表 2024年04月19日 0 点赞 0 评论 164 浏览 评分:0.0
不能再复杂了QWQ 摘要:解题思路: 传统思路注意事项: 遇到多个空格直接返回上一行qaq参考代码:#include<stdio.h>#include<string.h>#define HANG 100#defin…… 题解列表 2022年09月01日 0 点赞 0 评论 201 浏览 评分:0.0
去掉空格-题解(C++代码)14行代码 摘要:```cpp #include #include #include//string没有remove函数所以用algorithm里的remove using namespace std; in…… 题解列表 2020年10月20日 0 点赞 0 评论 257 浏览 评分:0.0
去掉空格-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main() { string a; while (g…… 题解列表 2020年11月25日 0 点赞 0 评论 199 浏览 评分:0.0
1196: 去掉空格 摘要:关键是运用find()函数和erase()函数。#include<bits/stdc++.h> using namespace std; int main(){ vector<in…… 题解列表 2021年12月10日 0 点赞 0 评论 513 浏览 评分:0.0
c代码记录之去掉空格--水题 摘要: ```c #include int main(){ char a; while((a=getchar())!=EOF) if(a!=' ') …… 题解列表 2024年01月16日 0 点赞 0 评论 57 浏览 评分:0.0
去掉空格 (C++代码)水 摘要:解题思路: 水水水,利用string参考代码:#include<bits/stdc++.h> using namespace std; int main(){ string kk; …… 题解列表 2018年12月14日 0 点赞 0 评论 421 浏览 评分:0.0
去掉空格-题解(C语言代码) 摘要: 首先输入一个不超过80个字符的字符串,然后判断是否有空格有空格,就去掉。输出字符串,注意是字符串,如果输入'End of file'就结束,完了。 代码: #include …… 题解列表 2020年03月14日 0 点赞 0 评论 307 浏览 评分:0.0