C++环境下实现输入字符串,并判断大小写字母、数字、空格及其他字符个数
#include <iostream>
using namespace std;
int main()
{
string str;
cout << "请输入一个字符串:" ;
getline(cin,str);
int num = 0,ch = 0,CH = 0,spa = 0,indo = 0;
for(int i=0;i<(int)str.size();i++)
{
if(str.at(i)>='a' && str.at(i)<='z')
{
ch++;
}
else if(str.at(i)>='A' && str.at(i)<='Z')
{
CH++;
}
else if(str.at(i)>='0' && str.at(i)<='9')
{
num++;
}
else if(str.at(i)==' ')
{
spa++;
}
else
{
indo++;
}
}
cout << "数字个数:" << num << endl
<< "小写字母个数:" << ch << endl
<< "大写字母个数:" << CH << endl
<< "空格个数:" << spa << endl
<< "其他字符个数:" << indo << endl ;
return 0;
}
结果展示
君子作业