题解 1196: 去掉空格 摘要:解题思路:注意事项:参考代码:int main(){ char a[100]; int len,i; char end[]="End of file"; whi…… 题解列表 2022年05月20日 0 点赞 0 评论 125 浏览 评分:0.0
去掉空格-题解(C语言代码) 摘要: 首先输入一个不超过80个字符的字符串,然后判断是否有空格有空格,就去掉。输出字符串,注意是字符串,如果输入'End of file'就结束,完了。 代码: #include …… 题解列表 2020年03月14日 0 点赞 0 评论 307 浏览 评分:0.0
C++ string类: 去掉空格 摘要:# 输出不带空格即可 ```c++ #include #include using namespace std; int main() { string s; wh…… 题解列表 2023年06月05日 0 点赞 0 评论 128 浏览 评分:0.0
去掉空格-题解(C语言代码) 摘要: ```c #include"stdio.h" #include"string.h" int main() { char c[10][30]; int i=0,n=0; wh…… 题解列表 2019年09月30日 0 点赞 0 评论 417 浏览 评分:0.0
编写题解 1196: 去掉空格 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void f(char a[100]){ int i=0,k=0; while(a[i]!='\0') { if(a…… 题解列表 2023年11月15日 0 点赞 0 评论 55 浏览 评分:0.0
不就是这样么? (C语言代码) 摘要:解题思路:不就是这样嘛emmm注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i; char ch; while((ch = …… 题解列表 2019年04月26日 0 点赞 0 评论 529 浏览 评分:4.0
去掉空格 (C语言代码) 摘要:解题思路:很简单,看程序。参考代码:#include <stdio.h> int main() { char s[85]; int i,j; while(gets(s)!=NULL)…… 题解列表 2018年10月12日 1 点赞 4 评论 462 浏览 评分:5.0
去掉空格-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char c[80], i; while (gets(c)) { for (i = 0; c[i] != &#…… 题解列表 2020年12月10日 0 点赞 0 评论 440 浏览 评分:6.0
1196——————去掉空格 摘要: a = input() while True: print(a.replace(' ','')) a = input()#凑字数凑字数凑字数凑字数…… 题解列表 2022年08月03日 0 点赞 0 评论 309 浏览 评分:6.0
去掉空格-题解c++我这才是最简单的 摘要:解题思路:getchar()可以读取所有字符,包括换行符,循环读取,如果读到的不是空格就加入到字符串中,读取到EOF时就退出循环,最后再输出字符串即可。参考代码:#include<iostream>u…… 题解列表 2021年05月24日 0 点赞 1 评论 342 浏览 评分:6.0