#include
using namespace std;
int main()
{
char c;
int el=0,sp=0,nu=0,other=0;
while(cin.get(c))
{
if(c=='\n')
break;
if((c>='A' && c<='Z')||(c>='a' && c<='z'))
el++;
else if(c>='0'&&c<='9')
nu++;
else if(c==' ')
sp++;
else
other++;
}
cout<<"英文字母个数="< system("pause"); return 0; }
#include <iostream>
using namespace std;
int main()
{
char c;
int el=0,sp=0,nu=0,other=0;
while(cin.get(c))
{
if(c=='\n')
break;
if((c>='A' && c<='Z')||(c>='a' && c<='z'))
el++;
else if(c>='0'&&c<='9')
nu++;
else if(c==' ')
sp++;
else
other++;
}
cout<<;"英文字母个数="<<el<<endl<<;"数 字 个 数 ="<<nu<<endl<<;"空 格 字 数 ="<<sp<<endl<<;"其他字符个数="<<other<<endl;
system("pause");
return 0;