编写题解 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 评论 614 浏览 评分:0.0
不使用数组,利用getchar函数进行解题 摘要:#######includeint main(){ int a=0,b=0,c=0,d=0; char ch; while((ch=getchar())!='\n') { …… 题解列表 2025年02月05日 4 点赞 0 评论 874 浏览 评分:2.0
C语言简单解法 摘要:解题思路:使用fgets来读取字符串,用fgets+strcspn()处理换行 符代替gets()可以避免gets()带来的安全风险。注意事项:注意,fgets()读取后会…… 题解列表 2025年02月25日 0 点赞 0 评论 894 浏览 评分:10.0
[编程入门]字符串分类统计 摘要:```c#include int main() { char s[201]; scanf("%[^\n]",s); int i=0; int abc…… 题解列表 2025年03月09日 5 点赞 0 评论 949 浏览 评分:10.0
编写题解 1012: [编程入门]字符串分类统计 摘要: #include #include #include #include #include using namespace std;…… 题解列表 2025年04月03日 3 点赞 0 评论 493 浏览 评分: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日 1 点赞 0 评论 276 浏览 评分:0.0