11.28C++

#include <iostream>

using namespace std;

int main()
{
    string str;
    cout << "请输入一个字符串:" << endl;
    getline(cin,str);
    int size = str.size();
    int a=0,b=0,c=0,d=0,e=0;
    for(int i=0; i < size; i++)
    {
        if(str.at(i) >= 'A' && str.at(i) <= 'Z')
        {
            a++;
        }
        else if(str.at(i) >= 'a' && str.at(i) <= 'z')
        {
            b++;
        }
        else if(str.at(i) >= '0' && str.at(i) <= '9')
        {
            c++;
        }
        else if(str.at(i) == ' ')
        {
            d++;
        }
        else
        {
            e++;
        }

    }
    cout << "大写字母个数:" << a <<endl;
    cout << "小写字母个数:" << b <<endl;
    cout << "数字个数:" << c <<endl;
    cout << "空格个数:" << d <<endl;
    cout << "其他字符个数:" << e <<endl;
    return 0;
}

相关推荐
yyycqupt2 分钟前
数据库连接池(二)
linux·数据库·c++·后端·单例模式
Legendary_00817 分钟前
LDR6020驱动的Type-C接口显示器解决方案
c语言·开发语言·计算机外设
techdashen21 分钟前
Go context.Context
开发语言·后端·golang
凡人的AI工具箱23 分钟前
40分钟学 Go 语言高并发:Select多路复用
开发语言·后端·架构·golang
苏言の狗25 分钟前
CCF认证202406-01 | 矩阵重塑(其一)
c语言·数据结构·c++·算法·矩阵
ModelBulider29 分钟前
SpringMVC应用专栏介绍
java·开发语言·后端·spring·springmvc
恬淡虚无真气从之30 分钟前
go 结构体方法
开发语言·后端·golang
licy__31 分钟前
Python BeautifulSoup 常用语句详解
开发语言·python·beautifulsoup
努力的Java程序员32 分钟前
后端接受大写参数(亲测能用)
java·开发语言
一雨方知深秋37 分钟前
WEB APIS(DOM对象,操作元素内容,属性,表单属性,自定义属性,定时器)
开发语言·前端·javascript