java:// 通过控制台输入一组字符串(仅包含大写字母、小写字母和数字),统计大写字母、小写字母和数字个数
时间: 2024-02-28 07:40:24 浏览: 68
java实现统计字符串中大写字母,小写字母及数字出现次数的方法示例
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String str = scanner.nextLine();
int upperCount = 0;
int lowerCount = 0;
int digitCount = 0;
for (int i = 0; i < str.length(); i++) {
char ch = str.charAt(i);
if (ch >= 'A' && ch <= 'Z') {
upperCount++;
} else if (ch >= 'a' && ch <= 'z') {
lowerCount++;
} else if (ch >= '0' && ch <= '9') {
digitCount++;
}
}
System.out.println("大写字母个数:" + upperCount);
System.out.println("小写字母个数:" + lowerCount);
System.out.println("数字个数:" + digitCount);
}
}
阅读全文