描述:编写一函数,由实参传来一个字符串,统计此字符串中字母、数字、空格和其它字符的个数,在主函数中输入字符串以及输出上述结果。
#include<iostream>
#include<vector>
#include<string>
using namespace std;
int main()
{
string x;
int y;
vector <char>a;
int b=0, c=0, d=0,e=0;
getline(cin, x);
for (int i = 0; i < x.size(); i++)
{
a.push_back(x[i]);
}
for (int i = 0; i < x.size(); i++)
{
y = a[i];
if (y >= 48 && y <= 57)
{
b++;
}
else if ((y >= 65 && y <= 90) || (y >= 97 && y <= 122))
{
c++;
}
else if(y==32)
{
e++;
}
else d++;
}
cout << c << " " << b << " " << e << " " << d;
return 0;
}