zb85190127


私信TA

用户名:zb85190127

访问量:9696

签 名:

等  级
排  名 1239
经  验 3061
参赛次数 0
文章发表 41
年  龄 0
在职情况 学生
学  校 南京师范大学中北学院
专  业

  自我简介:

import java.util.Scanner;
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String str=sc.nextLine();
        int m=0,n=0,x=0,z=0;
        for (int i=0;i<str.length();i++){
            char ch=str.charAt(i);//遍历字符串中的字符
            if (ch>='a'&&ch<='z'||ch>='A'&&ch<='Z'){//大写字母和小写字母
                m++;
            }
            else if (ch==' '){
                n++;
            }
            else if (ch>='0'&&ch<='9'){
                x++;
            }
            else {
                z++;
            }
        }
        System.out.println(m);
        System.out.println(n);
        System.out.println(x);
        System.out.println(z);
    }
}


 

0.0分

0 人评分

  评论区

  • «
  • »