A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

#include <stdio.h>
int main()
{
    char c;
    int lettlers = 0,space = 0, digit = 0,others = 0;
    printf("please input some charachers\n");
    while((c=getchar())!='\n')
{
    if(c>='a'&&c<='z'||c>='A'&&c<='Z')
    {
     letters++;
    }
    else if (c==' ')
    {
     space++;
    }
    else if (c>='0'&&c<='9')
    {
     digit++;
    }
   else
        others++;
}
printf("all in all:char=%d space=%d digit=%d others=%d", letters, space, digit, others);
    return 0;
}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马