需求:键盘录入一个字符串,
* 分别统计出其中英文字母、空格、数字和其它字符的数量,例如输出结果:”其他=1, 空格=2, 字母=12,数字=6”
public class Work07 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String str = sc.nextLine();
char[] chars = str.toCharArray();
//创建集合
//HashMap<Character, Integer> map2 = new HashMap<>();
HashMap<String,Integer> map = new HashMap<>();
int number=0;
int zimu=0;
int kong=0;
int other=0;
for (char c : chars) {
if (c>='0' && c<='9'){
number++;
map.put("数字",number);
}else if (c>='a' && c<='z'){
zimu++;
map.put("字母",zimu);
}else if (c==' '){
kong++;
map.put("空格",kong);
}else {
other ++;
map.put("其他",other);
}
}
System.out.println(map);
}
}