题解 | #统计字符#
统计字符
https://www.nowcoder.com/practice/539054b4c33b4776bc350155f7abd8f5
import java.util.Scanner;
// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int num1 = 0;
int num2 = 0;
int num3 = 0;
int num4 = 0;
// 注意 hasNext 和 hasNextLine 的区别
while (in.hasNext()) { // 注意 while 处理多个 case
String str = in.nextLine();
for (int i = 0; i < str.length(); i++) {
if (str.charAt(i) >= 'a' && str.charAt(i) <= 'z' || str.charAt(i) >= 'A' &&
str.charAt(i) <= 'Z') {
num1 += 1;
} else if (str.charAt(i) >= '0' && str.charAt(i) <= '9') {
num2 += 1;
} else if (str.charAt(i) == ' ') {
num3 += 1;
} else {
num4 += 1;
}
}
System.out.println(num1);
System.out.println(num3);
System.out.println(num2);
System.out.println(num4);
}
}
}

