文章
64
粉丝
100
获赞
4
访问
36.1k
#include <bits/stdc++.h>
using namespace std;
int main()
{
int num=0,str=0,zero=0,other=0;
char a[105]={0};
gets(a);
int l=strlen(a);
for(int i=0;i<l;i++)
{
if(a[i]>='0'&&a[i]<='9')
num++;
else
{
if(a[i]>='A'&&a[i]<='Z'||a[i]>='a'&&a[i]<='z')
str++;
else
{
if(a[i]==' ')
zero++;
else
other++;
}
}
}
printf("%d %d %d %d",str,num,zero,other);
}
登录后发布评论
暂无评论,来抢沙发