Java代码基础算法练习-字符串分类统计-2024.07.24

任务描述:
输入一行字符(字符串长度不超过255),分别统计出其中英文字母、数字、空格和其他 字符的个数。(提示,空格ASCALL码值为32)


解决思路:

输入一字符串,先判断是否符合要求,利用 charAt( ) 方法一个个判断字符串中的每个字符是否符合对应的标准,可以直接用获取的字符去比较,也可以用 ASCII 值去比较


代码示例:

字符直接比较

package a4_2024_07;

import java.util.Scanner;

/**
 * 字符串分类统计
 * 输入一行字符(字符串长度不超过255),分别统计出其中英文字母、数字、空格和其他
 * 字符的个数。(提示,空格ASCALL码值为32)
 */
public class j240724_2 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        System.out.println("请输入字符串(字符串长度不超过255):");
        String str = sc.nextLine();
        if (str.isEmpty() || str.length() > 255) {
            System.out.println("输入的字符串长度不符合要求,请重新输入!");
            return;
        }
        int wordCount = 0;
        int numCount = 0;
        int spaceCount = 0;
        int otherCount = 0;
        for (int i = 0; i < str.length(); i++) {
            char c = str.charAt(i);
            if (c >= 'a' && c <= 'z' || c >= 'A' && c <= 'Z') {
                wordCount++;
            } else if (c >= '0' && c <= '9') {
                numCount++;
            } else if (c == ' ') {
                spaceCount++;
            } else {
                otherCount++;
            }
        }
        System.out.println("英文字母个数:" + wordCount);
        System.out.println("数字个数:" + numCount);
        System.out.println("空格个数:" + spaceCount);
        System.out.println("其他个数:" + otherCount);
    }
}

利用ACSII值比较

package a4_2024_07;

import java.util.Scanner;

/**
 * 字符串分类统计
 * 输入一行字符(字符串长度不超过255),分别统计出其中英文字母、数字、空格和其他
 * 字符的个数。(提示,空格ASCALL码值为32)
 */
public class j240724_2 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        System.out.println("请输入字符串:");
        String str = sc.nextLine();
        int wordCount = 0;
        int numCount = 0;
        int spaceCount = 0;
        int otherCount = 0;
        
        for (int i = 0; i < str.length(); i++) {
            int asciiValue = (int) str.charAt(i);
            if ((asciiValue >= 65 && asciiValue <= 90) || (asciiValue >= 97 && asciiValue <= 122)) { // A-Z or a-z
                wordCount++;
            } else if (asciiValue >= 48 && asciiValue <= 57) { // 0-9
                numCount++;
            } else if (asciiValue == 32) { // 空格
                spaceCount++;
            } else {
                otherCount++;
            }
        }
        
        System.out.println("英文字母个数:" + wordCount);
        System.out.println("数字个数:" + numCount);
        System.out.println("空格个数:" + spaceCount);
        System.out.println("其他个数:" + otherCount);
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

雨空集

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值