#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
相关推荐
froxy6 分钟前
C++容器数据类型定义、测试用例滕昕瑜22 分钟前
Pascal语言的操作系统安全扫地的小何尚23 分钟前
使用NVIDIA NIM微服务加速科学文献综述stevenzqzq29 分钟前
kotlin函数类型uyeonashi39 分钟前
【C++】从零实现Json-Rpc框架(2)Excuse_lighttime40 分钟前
JAVA阻塞队列啊阿狸不会拉杆42 分钟前
第二十八章:Python可视化图表扩展-和弦图、旭日图、六边形箱图、桑基图和主题流图lmy201211081 小时前
提高:图论:强连通分量 图的遍历人类群星闪耀时1 小时前
破解 N 皇后 II:位运算的高效艺术Demons_kirit1 小时前
LeetCode 1863.找出所有子集的异或总和再求和