去掉空格-题解(C语言代码) 摘要:```c #include #include void del(char *s ,int i) { int j; for( j=i;j…… 题解列表 2019年11月27日 0 点赞 0 评论 440 浏览 评分:0.0
好用的STL双端队列 摘要:#include<bits/stdc++.h> using namespace std; deque<char>q; int main() { char c[100]; while(c…… 题解列表 2024年07月26日 0 点赞 0 评论 67 浏览 评分:0.0
去掉空格C语言 摘要:解题思路:首先赋值,利用循环函数,依次判断,只要遇到空格,就暂时调出循环,否则就打印该值注意事项:参考代码:#include"stdio.h"#include"string.h"int main(){…… 题解列表 2022年06月19日 0 点赞 0 评论 114 浏览 评分:0.0
去掉空格 (C语言代码) 摘要:解题思路:新手上路 请大家多多指教注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char zf[81]={0}; int n,j,l…… 题解列表 2018年02月02日 0 点赞 0 评论 691 浏览 评分: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语言代码) 摘要:事实上这道题仍然不需要使用字符串,使用getchar逐个读入然后遇到空格就删去,最后使用putchar输出就可以了。这样应该比目前的优质题解简单不少吧。 ```c # include in…… 题解列表 2020年07月07日 0 点赞 0 评论 287 浏览 评分:0.0
去掉空格(c语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char ch[80]; whil…… 题解列表 2023年11月23日 0 点赞 0 评论 87 浏览 评分:0.0
去掉空格-题解(C语言代码) 摘要:```c #include #include int main() { char str[80]; while(gets(str)) { int i,n…… 题解列表 2019年12月11日 0 点赞 0 评论 408 浏览 评分:0.0
去掉空格-题解(C++代码)(简单) 摘要: char str[1000]; while(!cin.getline(str,1000).eof()) { for(int i=0; i…… 题解列表 2020年02月14日 0 点赞 0 评论 341 浏览 评分:0.0
去掉空格 C语言 通俗易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ for (char a[100] = { 0 }; gets(a);)…… 题解列表 2023年01月31日 0 点赞 0 评论 57 浏览 评分:0.0