Java练习:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符 的个数。
时间: 2023-11-25 14:45:54 浏览: 73
Java统计输入字符的英文字母、空格、数字和其它
5星 · 资源好评率100%
好的,以下是Java代码:
```java
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
String str = input.nextLine();
int letter = 0, space = 0, digit = 0, other = 0;
for (int i = 0; i < str.length(); i++) {
char ch = str.charAt(i);
if (Character.isLetter(ch)) {
letter++;
} else if (Character.isDigit(ch)) {
digit++;
} else if (ch == ' ') {
space++;
} else {
other++;
}
}
System.out.printf("字母个数:%d,数字个数:%d,空格个数:%d,其它字符个数:%d", letter, digit, space, other);
}
}
```
输入一行字符后,程序会统计其中的字母、数字、空格和其它字符的个数,并输出结果。
阅读全文