JAVA 统计键盘输入的一个字符串中的数字,字母大小写和其他。

Posted ssinoo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA 统计键盘输入的一个字符串中的数字,字母大小写和其他。相关的知识,希望对你有一定的参考价值。

package Code503;

import java.util.Scanner;
/*
题目:
统计键盘输入的一个字符串中的数字,字母大小写和其他。
*/

public class CodeStringCount {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("请输入一个字符串");
String input = scanner.next();
int countUpper = 0;
int countLower = 0;
int countNumber= 0;
int countOther= 0;
//将字符串转为字符数组
char[] array = input.toCharArray();
for (int i = 0; i < array.length; i++) {
char ch = array[i];
if (‘A‘<=ch&&ch<=‘Z‘){
countUpper++;
}else if (‘a‘<=ch&&ch<=‘z‘){
countLower++;
}else if (‘0‘<=ch&&ch<=‘9‘){
countNumber++;
}else{
countOther++;
}
}
System.out.println("Lower"+countLower+"Upper"+countUpper+"Number"+countNumber+"Other"+countOther);
}
}
运行代码↓
技术图片

 



以上是关于JAVA 统计键盘输入的一个字符串中的数字,字母大小写和其他。的主要内容,如果未能解决你的问题,请参考以下文章

用python从键盘输入一个字符串,统计其中大写小写字母以及数字的个数?

在JAVA中,键盘输入的字符串中包含的字母、数字和其他字符的个数如何制作?

c语言 从键盘上任意输入一个字符(字母大小写,数字,控制字符和其他字符)判断所属字符类型,只发

C语言编程题:从键盘输入一串字符,统计其中的数字与字母个数并输出

C语言:从键盘输入一篇英文文本,统计每个英文字母(分大小写)及空格、数字、回车和其他字符,咋编?

java字符转换