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

从终端获取一个字符串,分别统计其中大写字母、小写字母、数字及其它字符的个数。

时间:2015-07-03 17:27:59      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:

//从终端获取一个字符串,分别统计其中大写字母、小写字母、数字及其它字符的个数。
#include<stdio.h>
#include<stdio.h>


int main(int argc,const char *argv[])
{
char str[100];
char ch;
int len,i;
int letter = 0, number = 0, space = 0, other = 0;
gets(str);
for(i=0;i<strlen(str);i++)
{
ch = str[i];
if((ch>=‘a‘&&ch<=‘z‘)||(ch>=‘A‘&&ch<=‘Z‘))
{
letter++;
}
else if(ch>=‘0‘&&ch<=‘9‘)
{
number++;
}
else if(ch==‘ ‘)
{
space++;
}
else
{
other++;
}
}
printf("letter=%d\nnumber=%d\nspace=%d\nother=%d\n",letter,number,space,other);
return 0;


}

版权声明:本文为博主原创文章,未经博主允许不得转载。

从终端获取一个字符串,分别统计其中大写字母、小写字母、数字及其它字符的个数。

标签:

原文地址:http://blog.csdn.net/u012701023/article/details/46743553

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