[编程入门]字符串分类统计 摘要:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h>int main(){ char str[200]; int len,le…… 题解列表 2023年07月15日 0 点赞 0 评论 357 浏览 评分:9.9
字符串分类统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100]; int i,letter=0,nu…… 题解列表 2023年07月07日 0 点赞 0 评论 244 浏览 评分:0.0
[编程入门]字符串分类统计 摘要:解题思路:注意事项:参考代码: #include <stdio.h> #include <string.h> /* 输入一行字符,分别统计出其中英文字母、数字、空格和其他字符的…… 题解列表 2023年07月05日 0 点赞 0 评论 245 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[201]; gets(str); str…… 题解列表 2023年06月15日 0 点赞 0 评论 243 浏览 评分:0.0
[编程入门]字符串分类统计 摘要:一、解题思路:C参考代码:#include <stdio.h> #include <string.h> int main() { char str[200]; int z = 0, s…… 题解列表 2023年05月02日 0 点赞 0 评论 233 浏览 评分:8.0
1012题: 字符串分类统计 摘要:# 自己写的代码 ```c #include #include int main() { char a[100]; int b=0,c=0,d=0,e=0; gets(a);…… 题解列表 2023年04月26日 0 点赞 0 评论 259 浏览 评分:0.0
字符串分类统计 摘要: #include int main() { char a[200]; gets(a); int n1 = 0, n2 = 0, n3 = 0, n4 = 0; int i = …… 题解列表 2023年04月20日 0 点赞 0 评论 333 浏览 评分:0.0
字符串分类统计C++ 摘要:解题思路:采用for循环输入,用gets而不用cin可以 输入空格注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ in…… 题解列表 2023年03月22日 0 点赞 0 评论 286 浏览 评分:0.0
字符串分类统计--个人题解 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { string str; getline(c…… 题解列表 2023年03月15日 0 点赞 0 评论 260 浏览 评分:0.0
[编程入门]字符串分类统计-题解(C语言代码) 摘要:题目描述:输入一行字符,分别统计其中英文字符,数字,空格和其他字符的个数。输入一行字符输出统计值本题牵扯到的知识点有1如何访问一维字符型数组的所有元素2如何表示数字字符第一种:a[i]>=’0’&&a…… 题解列表 2023年03月05日 0 点赞 0 评论 302 浏览 评分:9.9