#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;
}
11.28C++
久驻2023-11-29 16:54
相关推荐
yyycqupt2 分钟前
数据库连接池(二)Legendary_00817 分钟前
LDR6020驱动的Type-C接口显示器解决方案techdashen21 分钟前
Go context.Context凡人的AI工具箱23 分钟前
40分钟学 Go 语言高并发:Select多路复用苏言の狗25 分钟前
CCF认证202406-01 | 矩阵重塑(其一)ModelBulider29 分钟前
SpringMVC应用专栏介绍恬淡虚无真气从之30 分钟前
go 结构体方法licy__31 分钟前
Python BeautifulSoup 常用语句详解努力的Java程序员32 分钟前
后端接受大写参数(亲测能用)一雨方知深秋37 分钟前
WEB APIS(DOM对象,操作元素内容,属性,表单属性,自定义属性,定时器)