去除空格-题解(C语言代码) 摘要:解题思路:注意事项:这道题有bug参考代码:#include<stdio.h> void change(char* p); int main() { char s[100]; …… 题解列表 2021年01月12日 0 点赞 0 评论 226 浏览 评分:0.0
最普通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void f(char a[],int n){ int i; for(i=0;i<n;i…… 题解列表 2024年12月03日 0 点赞 0 评论 172 浏览 评分:0.0
去除空格(C语言) 摘要:参考代码: ```c #include void Spacebar(char *a,int len) { for(int i=0;i…… 题解列表 2023年10月28日 0 点赞 0 评论 293 浏览 评分:0.0
c++去除空格 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string put(string s){ int n=s.size(); …… 题解列表 2023年05月12日 1 点赞 0 评论 128 浏览 评分:0.0
2005————————去除空格 摘要: for i in list(map(str,input().split())):print(i,end='') n = list(map(str,input().split())…… 题解列表 2022年07月07日 0 点赞 0 评论 296 浏览 评分:0.0
去除空格-题解(C++代码) 摘要:解题思路:利用字符串erase函数,删除空格并输出注意事项:参考代码:#include<iostream> #include"string" #include"algorithm" using …… 题解列表 2021年01月27日 0 点赞 0 评论 232 浏览 评分:0.0
去除空格-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> char* change(char* p); int main() { char s[100]; g…… 题解列表 2021年01月12日 0 点赞 0 评论 233 浏览 评分:0.0
去除空格 (C++代码)水一下 摘要:参考代码:#include<bits/stdc++.h> using namespace std; int main(){ char kk[3000]={0}; gets(kk); f…… 题解列表 2018年12月30日 0 点赞 0 评论 778 浏览 评分:0.0
去除空格-题解(C语言代码) 摘要:解题思路:注意事项:参考代码: #include <stdio.h> #include <string.h> int main() { int l,i; char a[…… 题解列表 2020年12月14日 0 点赞 0 评论 388 浏览 评分:0.0
去除空格-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main(){ string s1; char a; whi…… 题解列表 2020年04月10日 0 点赞 0 评论 626 浏览 评分:0.0