本文主要是介绍(map集合应用)统计出其中英文字母、空格、数字和其它字符的数量,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
需求:键盘录入一个字符串,
* 分别统计出其中英文字母、空格、数字和其它字符的数量,例如输出结果:”其他=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);
}
}
这篇关于(map集合应用)统计出其中英文字母、空格、数字和其它字符的数量的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!