1196: 去掉空格 摘要:解题思路:(1)思路: ①while循环遍历,输入各字符串, ②char c2[80]={"End of file"}; //设置结束条…… 题解列表 2022年07月25日 0 点赞 0 评论 198 浏览 评分:0.0
去掉空格-题解(C语言代码) 摘要:#include "stdafx.h" #include void Delspace(char a[]) { int i,j; char b[80][80]; for(j=0;j…… 题解列表 2020年04月13日 0 点赞 0 评论 326 浏览 评分:0.0
1196: 去掉空格(7行) 摘要:解题思路:注意事项:c++多一行,就没用了参考代码:#include <stdio.h> int main(){ char ch; while((ch = getchar()) …… 题解列表 2022年10月11日 0 点赞 0 评论 101 浏览 评分:0.0
去掉空格 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[100]; int flog=0,i,t=0; while(gets(a)!=N…… 题解列表 2019年02月01日 0 点赞 0 评论 267 浏览 评分:0.0
去掉空格-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char str[4][100]; int i,j; gets(str[…… 题解列表 2020年07月21日 0 点赞 0 评论 177 浏览 评分:0.0
去掉空格-题解(C语言代码) 摘要:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>int main(){ char string[1000]; int…… 题解列表 2020年11月18日 0 点赞 0 评论 130 浏览 评分:0.0
去掉空格(处理多个空格相连) 摘要:解题思路: 用循环加gets分段收取输入,将空格后元素前移覆盖空格 注意事项: 注意考虑多个空格相连的情况 参考代码: ```c #include #include int main(…… 题解列表 2023年08月28日 0 点赞 0 评论 89 浏览 评分:0.0
去掉空格-题解(C语言代码) 摘要:# 真·初学者 # #include int main() { char x[80][80]; char c; int i = 0, j = 0, m = 0…… 题解列表 2019年12月13日 0 点赞 0 评论 321 浏览 评分:0.0
去掉空格 (C语言代码) 摘要:解题思路:输入之后计算字符数;将空格以及空格之后的字符向前移动;注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000…… 题解列表 2018年07月26日 0 点赞 0 评论 644 浏览 评分:0.0
去掉空格(超级容易理解的C语言版) 摘要:解题思路:输入多行带空格的可以用gets,遇到空格便把后面一个元素赋给当前空格,判断连续多个空格可以用while。注意事项:因为最后的字符串要加上'\0',所以循环变量定义在函数内而不…… 题解列表 2023年02月07日 0 点赞 0 评论 57 浏览 评分:0.0