在本题中,我们要统计字符的个数并且去除掉重复元素,我们可以使用hashset集合,因为hashset是不包括重复元素的。然后我们只需要从头开始遍历这个字符串,依次将元素加入到hashset集合即可,最后返回集合的长度即可。
import java.util.HashSet;
import java.util.Scanner;
// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String str = sc.nextLine();
HashSet<Character> hs = new HashSet<Character>();
for(int i = 0;i<str.length();i++){
hs.add(str.charAt(i));
}
System.out.println(hs.size());
}
}
注意:本题的关键是利用hashset集合不包括重复元素来去重。