java基础练习——读取字符串中数字和字母个数

java基础练习——读取字符串中数字和字母个数,第1张

package com.itheima.test7;

import java.util.Scanner;

public class CountNumber {
    public static void main(String[] args) {
//        键入一串字符串,并统计一个字符串中字母、数字分别为多少
//        1.键入
        Scanner sc=new Scanner(System.in);
        System.out.println("请输入字符串");
        String s=sc.nextLine();
//        2.统计字符串中字母和数字
//        记录数字个数
            int countNumber=0;
//        记录字母个数
            int countEnglish=0;
//        遍历字符串
            for(int i=0;i='0'&&ch<='9'){
                    countNumber++;
                }
//            统计字母
                else if((ch>='a'&&ch<='z')||(ch>='A'&&ch<='Z')){
                    countEnglish++;
                }
            }
//         3.输出
        System.out.println("一共有"+countNumber+"个数字");
        System.out.println("一共有"+countEnglish+"个字母");
        }

    }

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/719377.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-25
下一篇 2022-04-25

发表评论

登录后才能评论

评论列表(0条)

保存