码迷,mamicode.com
首页 > 其他好文 > 详细

字符统计

时间:2020-03-06 19:36:06      阅读:42      评论:0      收藏:0      [点我收藏+]

标签:其他   class   字符   mamicode   png   pre   ima   ==   %s   

# include<stdio.h>
char c[3][81];
int upp,low,sp,num,oth;
int main()
{
    upp=low=sp=num=oth=0;
    printf("请输入:\n");
    for(int i=0;i<3;i++)
        gets(c[i]);
    printf("\n");
    for(i=0;i<3;i++)
        printf("%s\n",c[i]);

    for(i=0;i<3;i++)
    {
        for(int j=0;j<80;j++)
        {
                if(c[i][j]==\0) break;
                if(c[i][j]== ) sp++;
                else if(c[i][j]>=A&&c[i][j]<=Z) upp++;
                else if(c[i][j]>=a&&c[i][j]<=z) low++;
                else if(c[i][j]>=0&&c[i][j]<=9) num++;
                else oth++;
        }
    }
    printf("\n大写:%d\n小写:%d\n空格:%d\n数字:%d\n其他:%d\n",upp,low,sp,num,oth);
    return 0;
}

运行结果如下:

技术图片

 

字符统计

标签:其他   class   字符   mamicode   png   pre   ima   ==   %s   

原文地址:https://www.cnblogs.com/bboykaku/p/12430107.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!