二级C语言-统计字符 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h>int main(){ int i,b=0,c=0,d=0,e=0; char a[1001]; …… 题解列表 2022年12月19日 0 点赞 0 评论 151 浏览 评分:9.9
C语言 统计字符& 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#define LONG 100int main(){ char c[LONG]…… 题解列表 2022年12月02日 0 点赞 0 评论 358 浏览 评分:9.9
统计字符(c++) 摘要:解题思路:用if()来分类判断注意事项:注意不同类型的ASCI值参考代码:#include<iostream>using namespace std;int main(){ char a[88]…… 题解列表 2022年10月23日 0 点赞 0 评论 136 浏览 评分:9.9
二级C语言-统计字符 摘要: #include #include #include #include using namespace std; int main() …… 题解列表 2022年10月14日 0 点赞 0 评论 103 浏览 评分:0.0
编写题解 1063: 二级C语言-统计字符 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2022年09月28日 0 点赞 0 评论 93 浏览 评分:0.0
Java 统计字符 摘要:解题思路:注意事项:参考代码:public static void main(String[] args) { Scanner sc = new Scanner(System.in); S…… 题解列表 2022年09月06日 0 点赞 0 评论 100 浏览 评分:0.0
题目 1063: 二级C语言-统计字符 摘要:``` #include #include using namespace std; int main() { string str; getline(cin, str)…… 题解列表 2022年08月25日 0 点赞 2 评论 504 浏览 评分:9.9
二级C语言-统计字符 摘要:```cpp #include #include using namespace std; int main() { int a=0,b=0,c=0,d=0; char …… 题解列表 2022年08月15日 0 点赞 0 评论 131 浏览 评分:8.0
c/c++方法 初学者思维 摘要:解题思路:注意事项:参考代码:void input() { char c; int letter = 0, space = 0, digit = 0, other = 0; while …… 题解列表 2022年08月12日 0 点赞 0 评论 217 浏览 评分:0.0
题解 1063: 二级C语言-统计字符(C语言数组+for循环+gets()函数实现) 摘要:解题思路:上次是用while循环,getchar()函数进行输入,实现的统计,文章链接:https://blog.dotcpp.com/a/88928本次用的gets()函数向数组中写入数据,再用fo…… 题解列表 2022年08月09日 0 点赞 0 评论 184 浏览 评分:0.0