字符串分类统计(C语言版)满分题解 摘要:解题思路:将要判断的数据传入字符xyz然后再用getchar()进行输入,用3个if来判断是否是英文,数字,空格,剩下的就是其他。这样可以不用定义数组,不用一个循环来传入数据,再用一个循环来判断。可以…… 题解列表 2025年01月02日 4 点赞 0 评论 298 浏览 评分:10.0
题解 1012: [编程入门]字符串分类统计新手方法 摘要:#include <stdio.h> int main () { char ch[200]; int i = 0; for (i=0;ch[i]<200;i++){ scanf …… 题解列表 2024年12月06日 0 点赞 0 评论 518 浏览 评分:10.0
最普通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,b=0,c=0,d=0,e=0; char a[201]; gets(a); …… 题解列表 2024年11月20日 1 点赞 0 评论 392 浏览 评分:9.0
用c语言解决字符串分类统计 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { char ch;int j,z,k,s; j=z=k=s=0; while((ch=getc…… 题解列表 2024年11月12日 1 点赞 0 评论 205 浏览 评分:0.0
编写题解 1012: [编程入门]字符串分类统计 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>int main(){ char str[100];…… 题解列表 2024年09月06日 0 点赞 0 评论 140 浏览 评分:0.0
字符串分类统计 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { int letters = 0, digit…… 题解列表 2024年08月08日 0 点赞 0 评论 103 浏览 评分:0.0
【编程入门】字符串分类统计 摘要:参考代码:#include <stdio.h>intmain(void){ int letter = 0, number = 0, space = 0, other = 0; char c…… 题解列表 2024年06月21日 0 点赞 0 评论 220 浏览 评分:9.9
for循环统计(c语言) 摘要:解题思路:注意事项:如果不是if{}else if{}的形式,内存会过大。参考代码:#include #include int main(void) { char str[200]; …… 题解列表 2024年05月27日 0 点赞 0 评论 262 浏览 评分:0.0
【编程入门】字符串分类统计 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char ch[200]; //字符串的定义 …… 题解列表 2024年04月17日 0 点赞 0 评论 107 浏览 评分:0.0
用头文件更快捷 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h>int main(){ char s[300]; ge…… 题解列表 2023年12月12日 0 点赞 0 评论 83 浏览 评分:6.0