字符个数统计
字符个数统计
http://www.nowcoder.com/questionTerminal/eb94f6a5b2ba49c6ac72d40b5ce95f50
/*
使用HashSet的不重复性质
*/
import java.util.*;
public class Main{
public static void main(String[] args){
Scanner sc=new Scanner(System.in);
while(sc.hasNextLine()){
char[] ch=sc.nextLine().toCharArray();
HashSet<Integer> set=new HashSet<Integer>();
for(int i=0;i<ch.length;i++){
int n=(int)ch[i];
set.add(n);
}
System.out.println(set.size());
}
}
}

