题解 | #字符个数统计#
字符个数统计
https://www.nowcoder.com/practice/eb94f6a5b2ba49c6ac72d40b5ce95f50
import java.util.*;
// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
//用map储存已出现过的数字,当有新的key存进map时,num+1
String str = sc.nextLine();
Map<Character,Integer> map = new HashMap<>();
int num = 0;
for(int i = 0; i < str.length(); i++){
if(map.get(str.charAt(i)) == null){
map.put(str.charAt(i),1);
num += 1;
}
}
System.out.println(num);
}
}