一、思维导图
二、试编程
提示并输入一个字符串,统计该字符中大写、小写字母个数、数字个数、空格个数以及其他字符个数,要求使用C++风格字符串完成
1、代码
#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;
int m=str.size();
for(int i=0;i<m;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)>='1'&&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;
}