题解 | #字符个数统计#
字符个数统计
http://www.nowcoder.com/practice/eb94f6a5b2ba49c6ac72d40b5ce95f50
#include <stdio.h>
#include <string.h>
//gets str suan strlen
//traverse str push AS i++
//换行表示结束符,不算在字符里
//scanf("%[^\n]", str);
int main() {
int AS[128]={0},type=0;
char str[500];
//gets(str);
scanf("%s", str);
int len;
len = strlen(str);
for(int i=0;i<len;i++){
AS[str[i]-0] ++;
}
for(int i=0;i<128;i++)
if(AS[i]>0){
type++;
}
printf("%d",type);
return 0; }