Ŀ

գҪıйص䡣
һַ(80)ͳеĴдĸСдĸոԼַĸ
ʾ
룺
bFaE3+8 =1R

upper: 3 lower: 2 blank: 1 digit: 3 other: 2



#include<stdio.h>
void main()
{
    char s[80];
    char *p;
    int blank, digit, lower, other, upper;

    gets(s);
    upper = lower = blank = digit = other = 0;
/*---------*/
	printf("upper: %d lower: %d blank: %d digit: %d other: %d\n", upper, lower, blank, digit, other);
}

