没什么好说的,今天刷了15道字符串,现在是凌晨两点。
import java.util.*;
public class Main{
public static void main(String[] args){
Scanner scan = new Scanner(System.in);
String str = scan.nextLine();
int[] count = new int[4];
for(char c : str.toCharArray()){
if(c>='a'&&c<='z'||c>'A'&&c<'Z'){
count[0]++;
}
else if(c == ' '){
count[1]++;
}
else if(c>='0'&&c<='9'){
count[2]++;
}
else{
count[3]++;
}
}
for(int i : count){
System.out.println(i);
}
}
}