二级C语言-统计字符 摘要:解题思路:可使用cin.get()拿到带空格的字符或者cin.getline()可使用strlen求出数组长度注意事项:需要包含头文件#include<bits/stdc++.h>参考代码:#incl…… 题解列表 2024年01月30日 0 点赞 0 评论 94 浏览 评分:0.0
LikeWater - 1063: 二级C语言-统计字符 摘要:#### 又是一道统计字符的题目,dotcpp的题库里面似乎有不少相同或极似的题目,比如这道统计字符题,与1035题自定义函数之字符类型统计一模一样,我激将之前的代码原封不动的拿过来也可以用,其实…… 题解列表 2023年02月26日 0 点赞 1 评论 60 浏览 评分:9.9
统计字符(c++) 摘要:解题思路:用if()来分类判断注意事项:注意不同类型的ASCI值参考代码:#include<iostream>using namespace std;int main(){ char a[88]…… 题解列表 2022年10月23日 0 点赞 0 评论 136 浏览 评分:9.9
二级C语言-统计字符 摘要: #include #include #include #include using namespace std; int main() …… 题解列表 2022年10月14日 0 点赞 0 评论 103 浏览 评分:0.0
题目 1063: 二级C语言-统计字符 摘要:``` #include #include using namespace std; int main() { string str; getline(cin, str)…… 题解列表 2022年08月25日 0 点赞 2 评论 504 浏览 评分:9.9
二级C语言-统计字符 摘要:```cpp #include #include using namespace std; int main() { int a=0,b=0,c=0,d=0; char …… 题解列表 2022年08月15日 0 点赞 0 评论 131 浏览 评分:8.0
二级C语言-统计字符 摘要:解题思路:暴力注意事项:没有参考代码:#include<bits/stdc++.h>using namespace std;string s;long long yw,kg,sz,qt;int mai…… 题解列表 2022年04月29日 0 点赞 0 评论 87 浏览 评分:0.0
1063: 二级C语言-统计字符 摘要:解题思路:传送面板:https://blog.dotcpp.com/a/84267这次用了string类来申请字符串,又尝试了迭代器,不过感觉不用迭代器也一样能做。注意事项:迭代器是一个指针。参考代码…… 题解列表 2022年04月02日 0 点赞 3 评论 1340 浏览 评分:7.3
编写题解 1063: 二级C语言-统计字符 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<ctype.h>#include<string.h>using namespace std;int main(){ …… 题解列表 2022年03月15日 0 点赞 0 评论 80 浏览 评分:0.0
1063: 二级C语言-统计字符 摘要:#include<bits/stdc++.h> using namespace std; int main(){ string words; getline(cin,wo…… 题解列表 2021年12月11日 0 点赞 0 评论 112 浏览 评分:0.0