#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
相关推荐
Sylvia-girl3 小时前
Java——抽象类Yana.nice5 小时前
Bash函数详解m0_535064607 小时前
C++模版编程:类模版与继承今天背单词了吗9807 小时前
算法学习笔记:19.牛顿迭代法——从原理到实战,涵盖 LeetCode 与考研 408 例题tomorrow.hello7 小时前
Java并发测试工具晓13138 小时前
JavaScript加强篇——第四章 日期对象与DOM节点(基础)老胖闲聊8 小时前
Python I/O 库【输入输出】全面详解jdlxx_dongfangxing8 小时前
进制转换算法详解及应用Tanecious.8 小时前
C++--红黑树封装实现set和mapwhy技术9 小时前
也是出息了,业务代码里面也用上算法了。