在哪你都看得到我记住这句话 摘要:解题思路:这道题的思路是因为用ASCII解决,因为在ASCII表里数字在一个范围字母在一个范围,剩下的就是其他。所以我们只需要遍历一下这个字符串记录一下每个范围的值有多少就解决了参考代码:#inclu…… 题解列表 2026年03月19日 0 点赞 0 评论 167 浏览 评分:0.0
c语言fgets函数读取字符串并分类统计 摘要:解题思路:逐个判断注意事项:字符判断大小会自动按照ascii码来判断。注意fgets会自动读取一个'\n'参考代码:#include<stdio.h>#include&…… 题解列表 2026年03月15日 1 点赞 0 评论 175 浏览 评分:10.0
C语言最优解 摘要:#include#includeint main(){ char ch; int alpha=0; int blank=0; int digit=0…… 题解列表 2026年01月14日 0 点赞 0 评论 340 浏览 评分:0.0
用标准库函数进行字符串分类 摘要:如下```#include #include using namespace std;int main(){ string input; getli…… 题解列表 2025年10月18日 2 点赞 0 评论 734 浏览 评分:0.0
T1012 字符串分类统计 摘要:解题思路:注意事项:参考代码:s=input()a,b,c,d=0,0,0,0for i in s:if i.isalpha(): a=a+1 …… 题解列表 2025年05月02日 2 点赞 0 评论 1145 浏览 评分:0.0
编写题解 1012: [编程入门]字符串分类统计 摘要: #include #include #include #include #include using namespace std;…… 题解列表 2025年04月03日 5 点赞 0 评论 1493 浏览 评分:10.0
[编程入门]字符串分类统计 摘要:```c#include int main() { char s[201]; scanf("%[^\n]",s); int i=0; int abc…… 题解列表 2025年03月09日 13 点赞 0 评论 2374 浏览 评分:10.0
C语言简单解法 摘要:解题思路:使用fgets来读取字符串,用fgets+strcspn()处理换行 符代替gets()可以避免gets()带来的安全风险。注意事项:注意,fgets()读取后会…… 题解列表 2025年02月25日 2 点赞 0 评论 1645 浏览 评分:10.0
不使用数组,利用getchar函数进行解题 摘要:#######includeint main(){ int a=0,b=0,c=0,d=0; char ch; while((ch=getchar())!='\n') { …… 题解列表 2025年02月05日 6 点赞 1 评论 1376 浏览 评分:2.0
编写题解 1012: [编程入门]字符串分类统计python 摘要:解题思路:注意事项:参考代码:m=input()a,b,c,d=0,0,0,0if len(m)<200: for i in m: &nbs…… 题解列表 2025年01月06日 1 点赞 0 评论 939 浏览 评分:0.0