题解 1063: 二级C语言-统计字符

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

二级C语言-统计字符

摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h>int main(){ int i,b=0,c=0,d=0,e=0; char a[1001]; ……

C语言 统计字符&

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#define LONG 100int main(){         char c[LONG]……

统计字符(c++)

摘要:解题思路:用if()来分类判断注意事项:注意不同类型的ASCI值参考代码:#include<iostream>using namespace std;int main(){    char a[88]……

Java 统计字符

摘要:解题思路:注意事项:参考代码:public static void main(String[] args) {    Scanner sc = new Scanner(System.in);    S……

c/c++方法 初学者思维

摘要:解题思路:注意事项:参考代码:void input() { char c; int letter = 0, space = 0, digit = 0, other = 0; while ……