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

Posted Roam-G

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了题目:输入一行字符,分别统计出其英文字母空格数字和其它字符的个数。相关的知识,希望对你有一定的参考价值。

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

import java.util.Scanner;

public class Hello 
//题目:输入一行字符,分别统计出其英文字母、空格、数字和其它字符的个数。


    public static void main(String[] args) 

        System.out.println("请输入字符串:");
        Scanner scanner = new Scanner(System.in);
        scanner.useDelimiter("\\n");
        String str = scanner.next();
        classify(str);
    

    public static void classify(String str) 
        char[] strArr = str.toCharArray();
        int num1 = 0;
//        字母
        String num1Str = "";
        int num2 = 0;
//        数字
        String num2Str = "";
        int space = 0;
//        空格
        String spaceStr = "";
        int other = 0;
//        其他
        String otherStr = "";

        for (int i = 0; i < strArr.length; i++) 
            int ascii = (int) strArr[i];
            if (48 <= ascii && ascii <= 57) 
                num2++;
                num2Str = num2Str + strArr[i] + " ";
             else if (ascii == 32) 
                space++;
             else if ((65 <= ascii && ascii <= 90) || (97 <= ascii && ascii <= 122)) 
                num1++;
                num1Str = num1Str + strArr[i] + " ";
             else 
                other++;
                otherStr = otherStr + strArr[i] + " ";
            
        
        System.out.println("字母个数:"+num1+"  字母分别为:"+num1Str);
        System.out.println("数字个数:"+num2+"  数字分别为:"+num2Str);
        System.out.println("空格个数:"+space);
        System.out.println("其他个数:"+other+"  其他分别为:"+otherStr);
        
    


以上是关于题目:输入一行字符,分别统计出其英文字母空格数字和其它字符的个数。的主要内容,如果未能解决你的问题,请参考以下文章

C语言试题九十之实现输入一行字符,分别统计出其中英文字母空格数字和其他字符的个数。

C语言试题九十之实现输入一行字符,分别统计出其中英文字母空格数字和其他字符的个数。

1200: 字符串数字字母空格其他字符的个数

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

输入一行字符,分别统计出其中英文字母空格数字和其他字符

输入一行字符,分别统计出其中英文字母空格数字和其他字符