去掉空格-题解(C语言代码) 摘要:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>int main(){ char string[1000]; int…… 题解列表 2020年11月18日 0 点赞 0 评论 130 浏览 评分: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 #include void delspace(char new1[]);//声明 int main() { cha…… 题解列表 2019年11月27日 0 点赞 0 评论 370 浏览 评分:0.0
去掉空格(超级容易理解的C语言版) 摘要:解题思路:输入多行带空格的可以用gets,遇到空格便把后面一个元素赋给当前空格,判断连续多个空格可以用while。注意事项:因为最后的字符串要加上'\0',所以循环变量定义在函数内而不…… 题解列表 2023年02月07日 0 点赞 0 评论 57 浏览 评分:0.0
去掉空格 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100]={0};char b[100]={0};int…… 题解列表 2019年01月20日 0 点赞 0 评论 356 浏览 评分:0.0
去掉空格-题解(C++代码) 摘要:解题思路: 两个点: 1、用string.find()找到空格所在的位置,用string.erase()擦除空格这一字符,直到字符串中没有空格 &nb 题解列表 2020年09月11日 0 点赞 0 评论 288 浏览 评分: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 评论 202 浏览 评分:0.0
去掉空格-题解(C语言代码) 摘要:解题思路: 判断输入不是EOF时,对输入字符逐个读取,判断读取的字符不是空格时,输出该字符。注意事项:参考代码:#include<stdio.h>int main(){ in…… 题解列表 2020年11月22日 0 点赞 0 评论 254 浏览 评分:0.0
去掉空格 (C++代码) 摘要:解题思路:用STL的erase来删除空格注意事项:参考代码:#include <deque>#include <algorithm>#include <iostream>#include <cstdl…… 题解列表 2018年01月18日 0 点赞 0 评论 777 浏览 评分:0.0