一、思维导图
二、提示并输入一个字符串,统计该字符串中字母个数、数字个数、空格个数、其他字符的个数
cpp
#include <iostream>
using namespace std;
int main()
{
while(1)
{
int letter = 0;
int number =0;
int space = 0;
int other = 0;
string str;
cout << "请输入字符串:";
getchar();
getline(cin,str);
for(int i=0;i<str.length();i++)
{
char c = str[i];
//字母
if((c >= 'A' && c <= 'Z') ||(c >= 'a' && c <= 'z'))
{
letter++;
}
//数字
else if(c >= '0' && c <='9')
{
number++;
}
//空格
else if(c == ' ')
{
space++;
}
else
other++;
}
cout<<"字母:"<<letter<<endl<<"数字:"<<number<<endl<<"空格:"<<space<<endl<<"其它:"<<other<<endl;
}
return 0;
}