c语言设计:从键盘上输入若干字符(以回车结束),分别统计其中字符(区分大小写),数字和其他的字符的

2020-06-27 教育 1118阅读
#include 
int main()
{
     int c;
     int el=0,EL=0,nu=0,other=0; 
     c=getchar();//输入字符
     
     while(c!='\n')
     {
             if(c>='a' && c<='z')
                  el++;
             else if(c>='A' && c<='Z')
                  EL++;
             else if(c>='0'&&c<='9')
                 nu++;
             else 
                  other++;
                  
             c=getchar();//输入字符
     }
     printf("小写英文字母个数=%d\n大写英文字母个数=%d\n数 字 个 数 =%d\n其他字符个数=%d\n",el,EL,nu,other);
     return 0;
}

测试结果:

声明:你问我答网所有作品(图文、音视频)均由用户自行上传分享,仅供网友学习交流。若您的权利被侵害,请联系fangmu6661024@163.com