1.提示并输入一个字符串,统计该字符中大写、小写字母个数、数字个数、空格个数以及其他字符个数(要求使用C++风格字符串完成)

代码
cpp
#include <iostream>
using namespace std;
int main()
{
string str;
cout <<"请输入字符串:" <<endl;
getline(cin,str);
int a=0,b=0,c=0,d=0,e=0;
for(size_t i=0;i<str.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 << " 小写字母个数为:" << b << endl;
cout << "数字个数为:" << c << " 空格个数为:" << d << " 其他字符个数为:" << e << endl;
return 0;
}
2.思维导图
