意大利薄型球阀:6、Letter Count

来源:百度文库 编辑:神马品牌网 时间:2024/05/09 19:32:42
6、Letter Count
有这么一段短文:
Hello is a new way to look at pictures with friends and family.When you use Hello, you get to see your photographs together with your friends online. You don’t have to wait for huge email attachments to download or upload your pictures to a public website. Just point at a picture and you can tell the person who sent it exactly what you think. With just one click, you can get the
original high-quality, full-sized file to print.
分别统计出其中英文大写字母,小写字母,数字,以及其他字符的个数

如果是用C语言写,流程如下:
1,定义几个变量或数组分别用来计数
2,读取一个字符c
3,判断这个字符的大小
if (c>=\'A\' && c<=\'Z\') //为大写字符
BigCount++;
elseif (c>=\'a\' && c<=\'z\') // 小写字母
SmallCount++;
elseif (c>=\'0\' && <=\'9\') //数字
NumCount++;
else //其他
OtherCOunt++;
4,循环执行第2步