输入一行字符,分别统计出包含英文字母、空格、数字和其它字符的个数。

题目描述

输入一行字符,分别统计出包含英文字母、空格、数字和其它字符的个数。

 

    /**
     * 统计出英文字母字符的个数。
     * 
     * @param str 需要输入的字符串
     * @return 英文字母的个数
     */
    public static int getEnglishCharCount(String str)
    {
        return 0;
    }
    
    /**
     * 统计出空格字符的个数。
     * 
     * @param str 需要输入的字符串
     * @return 空格的个数
     */
    public static int getBlankCharCount(String str)
    {
        return 0;
    }
    
    /**
     * 统计出数字字符的个数。
     * 
     * @param str 需要输入的字符串
     * @return 英文字母的个数
     */
    public static int getNumberCharCount(String str)
    {
        return 0;
    }
    
    /**
     * 统计出其它字符的个数。
     * 
     * @param str 需要输入的字符串
     * @return 英文字母的个数
     */
    public static int getOtherCharCount(String str)
    {
        return 0;
    }

 

 

输入描述:

 
  

输入一行字符串,可以有空格

输出描述:

 
  

统计其中英文字符,空格字符,数字字符,其他字符的个数

示例1

输入

1qazxsw23 edcvfr45tgbn hy67uj m,ki89ol.\\/;p0-=\\][

输出

26
3
10
12

import java.util.Scanner;
public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        while(sc.hasNext()){
            String s = sc.nextLine();
            char[] a =s.toCharArray();
            int count1=0;
            int count2=0;
            int count3=0;
            int count4=0;
            for(int i=0;i<a.length;i++){
                if(a[i]>='a'&&a[i]<='z'||a[i]>='A'&&a[i]<='Z')
                {
                    count1++;continue;
                }
                if((int)a[i]==32){
                    count2++;continue;
                }
                if(a[i]>='0'&&a[i]<='9'){
                    count3++;continue;
                }
                count4++;
            }
            System.out.println(count1);
            System.out.println(count2);
            System.out.println(count3);
            System.out.println(count4);
        }
    }
}

猜你喜欢

转载自blog.csdn.net/u014566193/article/details/79796407