编写一个函数,统计此字符串中字母、数字、空格、和其他字符的个数,在主函数中输入字符串以及输出上述的结果。

#include
#include
int letter=0,digit=0,blank=0,other=0;
void lpl(char a[]);
int main()
{

    char a[100];
    gets(a);
    lpl(a);
    printf("%d %d %d %d\n",letter,digit,blank,other);
    return 0;
}
void lpl(char a[])
{
    char *p;
    for(p=a;*p != '\0'; p++)
    {
        if(*p==' ')
            blank++;
        else if(*p>='a'&&*p<='z'||*p>='A'&&*p<='Z')
            letter++;
        else if(*p>='0'&&*p<='9')
            digit++;
        else
            other++;
    }
}

 

你可能感兴趣的:(编写一个函数,统计此字符串中字母、数字、空格、和其他字符的个数,在主函数中输入字符串以及输出上述的结果。)