1. 键盘录入一个字符串,统计该字符串中大写字母字符,小写字母字符,数字字符出现的次数(不考虑其他字符) 2.
时间: 2023-11-13 08:04:37 浏览: 160
从键盘输入一串字符,分别统计其中的字母,数字字符和其他[文].pdf
1. 可以使用Java语言实现如下:
```java
import java.util.Scanner;
public class StringCount {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("请输入一个字符串:");
String str = sc.nextLine();
int upperCount = 0;
int lowerCount = 0;
int numberCount = 0;
for (char c : str.toCharArray()) {
if (c >= 'A' && c <= 'Z') {
upperCount++;
} else if (c >= 'a' && c <= 'z') {
lowerCount++;
} else if (c >= '0' && c <= '9') {
numberCount++;
}
}
System.out.println("大写字母出现次数:" + upperCount);
System.out.println("小写字母出现次数:" + lowerCount);
System.out.println("数字出现次数:" + numberCount);
}
}
```
2. 您需要给出更具体的问题描述,我才能回答。
阅读全文