c语言字符串分类

计算字符串中数字,字母,空格,其它字符的个数

#include

int main()

{

   char ch;

   int a=0,b=0,c=0,d=0;

   ch=getchar():

   while(ch!='\n')//打回车换行则跳出循环

{

   if(ch>='0'&&ch<='9')

         a++;

   else if(ch>='a'&&ch<='z'||ch>='A'&&ch<='Z')

         b++;

    else if(ch==' ')//引号里面打了一个空格

         c++;

     else

         d++;

     ch=getchar();

}

printf("%d %d %d %d",a,b,c,d);

return 0;

}

你可能感兴趣的:(c语言,算法,数据结构)