[编程入门]字符串分类统计-题解(C语言代码) 摘要: ```c #include int main() { int yy = 0, sz = 0, kg = 0, qt = 0; int temp ; whil…… 题解列表 2020年02月11日 0 点赞 0 评论 231 浏览 评分:0.0
]字符串分类统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[200]; gets(a); int i,zimu=0,shuzi=0,kong…… 题解列表 2023年11月30日 0 点赞 0 评论 61 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] arg…… 题解列表 2019年03月07日 0 点赞 0 评论 304 浏览 评分:0.0
编程入门]字符串分类统计 摘要:解题思路:#include <stdio.h>#include <ctype.h>int main(){ int letter = 0,number = 0,blank = 0,others =…… 题解列表 2021年11月10日 0 点赞 0 评论 226 浏览 评分:0.0
[编程入门]字符串分类统计-题解(C语言代码) 摘要:#include int main() { int letter = 0,number = 0,blank = 0,others = 0,c; //分别为字母、数字、空格、…… 题解列表 2019年07月25日 0 点赞 0 评论 295 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (C语言代码) 摘要:解题思路:看见这一题想到自己当初实验室考核的时候,那个是随堂测试,当时的我并没有做出来,时间过的好快,珍惜当下注意事项:答案输出的时候中间有空格 还有就是字母大小写参考代码:#include<stdi…… 题解列表 2018年02月05日 0 点赞 0 评论 656 浏览 评分:0.0
字符串分类统计另一种方法 摘要:解题思路:注意事项:参考代码:int count1=0,count2=0,count3=0,count4=0; int i; char str[200]; gets(str); for(i=0;str…… 题解列表 2021年08月23日 0 点赞 0 评论 134 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>//输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。int main(){ …… 题解列表 2017年10月20日 0 点赞 0 评论 658 浏览 评分:0.0
[编程入门]字符串分类统计-题解(C++代码) 摘要:解题思路: 运用 #include <ctype.h> 里面的库函数 isdigit(), isspace(),isalpha();注意事项: c++输入一行未知字符串:(对于字符数组) …… 题解列表 2020年06月26日 0 点赞 0 评论 208 浏览 评分:0.0
编写题解 1012: [编程入门]字符串分类统计python 摘要:解题思路:注意事项:参考代码:m=input()a,b,c,d=0,0,0,0if len(m)<200: for i in m: &nbs…… 题解列表 2025年01月06日 0 点赞 0 评论 122 浏览 评分:0.0