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

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

筛选

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

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

Java 统计字符

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

Python解统计字符

摘要:解题思路:注意事项:参考代码:n = input()a = 0b = 0c = 0d = 0for i in n:    if (i>=&#39;a&#39; and i<=&#39;z&#39;) ……

二级C语言-统计字符

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int  main(){    char str;    int zimu,kongge,shuzi,qita;    zimu=ko……

二级C语言-统计字符

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() {     int zimu=0,num=0,kon=0,oth=0;     char c;    ……

Java统计字符

摘要:解题思路:注意事项:参考代码:public class Main {    public static void main(String[] args) {        Scanner sc = n……