int main(){ //思路是通过各类型字符的ASCLL码的范围来确定输入的字符的类型。
int a=0, b=0, c=0, d=0;
char s;
while ((s = getchar()) != '\n') {
if ((65 <= s&&s <= 90) || (97 <= s&&s <= 122)) { a++; }
else if (48 <= s&&s <= 57) { b++; }
else if (s == 32) { c++; }
else { d++; }
}
printf("%d %d %d %d", a,b,c,d);
return 0;
}
0.0分
0 人评分