去掉空格-题解(C++代码)14行代码 摘要:```cpp #include #include #include//string没有remove函数所以用algorithm里的remove using namespace std; in…… 题解列表 2020年10月20日 0 点赞 0 评论 258 浏览 评分:0.0
去掉空格-题解(C++代码) 简单粗暴硬解法 摘要:#include #include using namespace std; int main() { char a[1000]; char b[1000]; i…… 题解列表 2020年02月03日 0 点赞 0 评论 376 浏览 评分:0.0
去掉空格-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main() { string a; while (g…… 题解列表 2020年11月25日 0 点赞 0 评论 200 浏览 评分:0.0
去掉空格-题解(C语言代码) 摘要: 首先输入一个不超过80个字符的字符串,然后判断是否有空格有空格,就去掉。输出字符串,注意是字符串,如果输入'End of file'就结束,完了。 代码: #include …… 题解列表 2020年03月14日 0 点赞 0 评论 307 浏览 评分:0.0
去掉空格 (C++代码)水 摘要:解题思路: 水水水,利用string参考代码:#include<bits/stdc++.h> using namespace std; int main(){ string kk; …… 题解列表 2018年12月14日 0 点赞 0 评论 421 浏览 评分:0.0
编写题解 1196: 去掉空格(编程入门) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char arr[101]={0}; cha…… 题解列表 2024年04月26日 0 点赞 0 评论 105 浏览 评分:0.0
编写题解 1196: 去掉空格 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>void fun(char a[]){ int i, j; for (i = 0; …… 题解列表 2022年05月12日 0 点赞 0 评论 128 浏览 评分:0.0
去掉空格-题解(C语言代码) 摘要: #include #include void delspace(char new1[]);//声明 int main() { cha…… 题解列表 2019年11月27日 0 点赞 0 评论 370 浏览 评分:0.0
c语言字符串去掉空格 摘要:```c #include #include void f(char a[100]); int main() { char a[100],b[100],c[100],d[100]; …… 题解列表 2023年04月21日 0 点赞 0 评论 124 浏览 评分:0.0
Hifipsysta-1196-去掉空格(C++代码) 摘要:```cpp #include #include using namespace std; int main(){ string str, str_dup; while…… 题解列表 2022年02月05日 0 点赞 0 评论 149 浏览 评分:0.0