1196: 去掉空格 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int yw;int main(){ while(getline(…… 题解列表 2022年05月10日 0 点赞 0 评论 110 浏览 评分:0.0
编写题解 1196: 去掉空格(编程入门) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char arr[101]={0}; cha…… 题解列表 2024年04月26日 0 点赞 0 评论 105 浏览 评分:0.0
去掉空格 (C++代码) 摘要:解题思路:用STL的erase来删除空格注意事项:参考代码:#include <deque>#include <algorithm>#include <iostream>#include <cstdl…… 题解列表 2018年01月18日 0 点赞 0 评论 777 浏览 评分:0.0
去掉空格-题解(C++代码) 简单粗暴硬解法 摘要:#include #include using namespace std; int main() { char a[1000]; char b[1000]; i…… 题解列表 2020年02月03日 0 点赞 0 评论 376 浏览 评分:0.0
c语言字符串去掉空格 摘要:```c #include #include void f(char a[100]); int main() { char a[100],b[100],c[100],d[100]; …… 题解列表 2023年04月21日 0 点赞 0 评论 124 浏览 评分:0.0
去掉空格-题解(C语言代码) 摘要: 首先输入一个不超过80个字符的字符串,然后判断是否有空格有空格,就去掉。输出字符串,注意是字符串,如果输入'End of file'就结束,完了。 代码: #include …… 题解列表 2020年03月14日 0 点赞 0 评论 307 浏览 评分: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
不能再复杂了QWQ 摘要:解题思路: 传统思路注意事项: 遇到多个空格直接返回上一行qaq参考代码:#include<stdio.h>#include<string.h>#define HANG 100#defin…… 题解列表 2022年09月01日 0 点赞 0 评论 202 浏览 评分:0.0
去掉空格 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; int main() { string s;…… 题解列表 2019年04月14日 0 点赞 0 评论 392 浏览 评分:0.0
去掉空格-题解(C++代码) 理解题意,利用ASCII码,全为常用代码 摘要:解题思路:空格对应ASCII码为32,即不等于时输出,等于时不输出注意事项:题意是输入一行立即输出一行,直到输入End of file才结束参考代码:#include<iostream>#includ…… 题解列表 2020年11月07日 0 点赞 0 评论 321 浏览 评分:0.0