1.思维导图
2.提示并输入一个字符串,统计该字符中大写、小写字母个数、数字个数、空格个数以及其他字符个数要求使用C++风格字符串完成
#include <iostream>
using namespace std;
int main()
{
string str1;
int Capitalnum=0;
int lowercasenum=0;
int blacknum=0;
int figurenum=0;
int othernum=0;
cout << "请输入一个字符串" << endl;
getline(cin,str1);
cout << str1.size() << endl;
int strlen=str1.size();
for(int i=0;i<strlen;i++)
{
if(str1[i]>=65&&str1[i]<=91)
{
Capitalnum++;
}
else if(str1[i]>=97&&str1[i]<=123)
{
lowercasenum++;
}
else if(str1[i]>=48&&str1[i]<=57)
{
figurenum++;
}
else if(str1[i]==32)
{
blacknum++;
}
else
{
othernum++;
}
}
cout << "输入字符串大写字母有" << Capitalnum << "个" << endl;
cout << "输入字符串小写字母有" << lowercasenum << "个" << endl;
cout << "输入字符串数字有" << figurenum << "个" << endl;
cout << "输入字符串空格有" << blacknum << "个" << endl;
cout << "输入字符串其他字符有" << othernum << "个" << endl;
return 0;
}