统计大小写字母个数

时间:2021-05-08 01:04:32
/*
Copyright (c) 烟台大学计算机与控制工程学院
Author:刘慧艳
Created:
Edition:V1.0
Describe: 【项目5-字符串统计】请分别编制程序,完成下面的处理(选2个):
  (1)统计字母'A'出现的次数;
  (2)统计字符串中(大/小写)字母个数;
  (3)统计每一个数字字符出现的次数;
  (4)统计每一个字母出现的个数

*/
#include <iostream>
#include <cstdio>
using namespace std;
int main()
{
    char str[50];
    int i=0,d=0,x=0;
    cout<<"请输入字符串:";
    gets(str);
    while(str[i]!=0)
    {
        if(str[i]>='A'&&str[i]<='Z') d++;
        if(str[i]>='a'&&str[i]<='z') x++;
        i++;
    }
    cout<<"大写字母的个数是:"<<d<<endl;
    cout<<"小写字母的个数是:"<<x<<endl;
    return 0;
}
统计大小写字母个数