编写算法,统计一个字符串中出现的大写字母小写字母数字和其他字符出现的个数。
Posted 遍唱阳春
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编写算法,统计一个字符串中出现的大写字母小写字母数字和其他字符出现的个数。相关的知识,希望对你有一定的参考价值。
import java.util.Scanner; public class Test2 { public static void main(String[] args) { //局部变量使用前一定要初始化 int lowCount = 0,upperCount=0,numCount=0,otherCount=0; Scanner sc=new Scanner(System.in); System.out.println("请输入字符串:"); String str=sc.next(); char[] chars=str.toCharArray(); for (int i = 0; i < chars.length; i++) { if(97<=chars[i]&&chars[i]<=122){ //小写字母 lowCount++; } else if(65<=chars[i]&&chars[i]<=90){ upperCount++; } else if(48<=chars[i]&&chars[i]<=57){ numCount++; } else{ otherCount++; } } System.out.println("大写字母个数:"+upperCount); System.out.println("小写字母个数:"+lowCount); System.out.println("数字个数:"+numCount); System.out.println("其他字符个数:"+otherCount); } }
以上是关于编写算法,统计一个字符串中出现的大写字母小写字母数字和其他字符出现的个数。的主要内容,如果未能解决你的问题,请参考以下文章
C语言编写程序,将一个字符串中的大写字母转换为对应的小写字母,小写字母转换为对应的大写字母,并统计数
在一个字符串中,统计大写字母个数,小写字母个数,其他字符个数的四种算法