Java 通过键盘输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。
时间: 2023-11-25 22:02:22 浏览: 76
好的,关于这个问题,我可以给您提供以下的Java代码来实现:
```java
import java.util.Scanner;
public class CountChars {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("请输入一行字符:");
String line = sc.nextLine();
int letters = 0, spaces = 0, digits = 0, others = 0;
for (int i = 0; i < line.length(); i++) {
char c = line.charAt(i);
if (Character.isLetter(c)) {
letters++;
} else if (Character.isWhitespace(c)) {
spaces++;
} else if (Character.isDigit(c)) {
digits++;
} else {
others++;
}
}
System.out.println("字母个数:" + letters);
System.out.println("空格个数:" + spaces);
System.out.println("数字个数:" + digits);
System.out.println("其它字符个数:" + others);
}
}
```
这段代码可以接收键盘输入,并统计其中的英文字母、空格、数字和其他字符的个数。希望能对您有所帮助。
阅读全文