1196: 去掉空格 摘要:关键是运用find()函数和erase()函数。#include<bits/stdc++.h> using namespace std; int main(){ vector<in…… 题解列表 2021年12月10日 0 点赞 0 评论 514 浏览 评分:0.0
1196: 去掉空格(最简代码) 摘要:解题思路:使用if判断,如果不是空格的话则打印参考代码:#include <stdio.h> int main() { char p; while(scanf("%c",&p)!=E…… 题解列表 2022年01月09日 0 点赞 1 评论 451 浏览 评分:9.9
编写题解 1196: 去掉空格(避免使用gets()的解法) 摘要:### 前言 **看到大家用的都是gets的解法,而gets由于输入易溢出的问题已经不时兴了。这里为大家提供只用scanf的方法。 ****可改进之处欢迎各位大佬指正** ```c #inc…… 题解列表 2022年01月16日 0 点赞 4 评论 181 浏览 评分:9.0
去掉空格C语言 摘要:#include<stdio.h>#include<string.h>int main(){ char str[100],str1[100];int i,k=0; while(gets(s…… 题解列表 2022年01月17日 0 点赞 0 评论 80 浏览 评分:0.0
含有结束语句的去空格程序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[100]; int i,j[100],k=0; char en…… 题解列表 2022年01月24日 0 点赞 3 评论 431 浏览 评分:9.9
Hifipsysta-1196-去掉空格(C++代码) 摘要:```cpp #include #include using namespace std; int main(){ string str, str_dup; while…… 题解列表 2022年02月05日 0 点赞 0 评论 149 浏览 评分:0.0
[Sapphire]1196:去掉空格(满足题目所有条件包括退出但运行错误/(ㄒoㄒ)/~~)(C语言代码) 摘要:解题思路:嗯······由于我出错了我就不解释了,但确确实实满足题目的所有条件和样例,有大佬可以指点一下迷津吗?参考代码:#include<stdio.h> #include<string.h> …… 题解列表 2022年02月18日 0 点赞 2 评论 600 浏览 评分:7.1
去掉空格 if(s==' ') printf("") 摘要:#include <stdio.h> int main() { char s; while(scanf("%c",&s)!=EOF){ if(s=='\n') pri…… 题解列表 2022年04月04日 0 点赞 0 评论 290 浏览 评分:9.9
去掉空格(简单篇) 摘要:解题思路:用while循环输入字符串,当输入"End of file"时结束循环。遍历每次输入的字符串,当遍历到不是空格的字符时,原样输出。遍历到空格时输出'',也就是什么也不输出。注…… 题解列表 2022年04月23日 0 点赞 3 评论 409 浏览 评分:9.9