1012: [编程入门]字符串分类统计 摘要:解题思路:注意事项:有个一样的题,要用函数参考代码:#include <iostream> #include <string> using namespace std; int main()…… 题解列表 2022年10月11日 0 点赞 0 评论 232 浏览 评分:9.9
字符串分类统计 摘要: #include using namespace std; int main() { int num = 0, letter = 0, space =…… 题解列表 2022年10月10日 0 点赞 0 评论 53 浏览 评分:0.0
【kkky】字符串分类统计 摘要:解题思路: 字符数组接收,运用strlen函数得出数组长度,条件遍历计数得出结果注意事项: gets能读取空格 scanf不能读取空格参考代码:#include <iostream>…… 题解列表 2022年07月23日 0 点赞 0 评论 238 浏览 评分:9.9
1012: [编程入门]字符串分类统计 摘要:解题思路:全部for一遍,并判断。注意事项:1·要用gets,不要用cin,否则读不进空格。 2·判断数字时,要从0开始。参考代码:#include<bits/stdc++.h> using na…… 题解列表 2022年07月11日 0 点赞 2 评论 1031 浏览 评分:9.5
【cctype字符函数库】求解字符串分类统计 摘要:解题思路:利用cctype字符函数库解决问题cctype库内函数isalnum(c); 如果参数是字母或数字,函数就返回true,否则返回falseisalpha(c); 如果参数是字母,函数返回tr…… 题解列表 2022年05月20日 0 点赞 0 评论 199 浏览 评分:7.3
1012: [编程入门]字符串分类统计 摘要:解题思路:这道题就是统计英文字母、数字、空格和其他字符的个数,方法就是遍历输入的字符串,进行判断。注意事项:注意用getline输入。参考代码:#include<bits/stdc++.h>using…… 题解列表 2022年05月13日 0 点赞 0 评论 308 浏览 评分:9.9
LULU——题解 1012: [编程入门]字符串分类统计 摘要:#include<stdio.h>#include<iostream>#include<string.h>using namespace std;int main(){ int num=0,lette…… 题解列表 2022年05月10日 0 点赞 0 评论 296 浏览 评分:9.9
字符串分类统计 题解(简单啦) 摘要:解题思路:输入字符串,判断,计数,输出,欧了。注意事项:要用getline输入!参考代码:#include<bits/stdc++.h>using namespace std;string s;int…… 题解列表 2022年05月08日 0 点赞 0 评论 102 浏览 评分:0.0
编写题解 1012: [编程入门]字符串分类统计 摘要:#include <iostream>#include <cstdio>#include <cstring>using namespace std;int main (){ char str[1…… 题解列表 2022年05月08日 0 点赞 0 评论 158 浏览 评分:0.0
编写题解 1012: [编程入门]字符串分类统计 摘要:#include <iostream>#include <cstdio>#include <cstring>using namespace std;int main (){ char str[1…… 题解列表 2022年05月08日 0 点赞 0 评论 117 浏览 评分:0.0