文章
36
粉丝
0
获赞
5
访问
22.2k
#include <stdio.h>
#include <stdbool.h>
#include <math.h>
#include <string.h>
int main(void) {
char s[1000];
int eng=0,math=0,space=0,c=0;
gets(s);
for(int i=0;i<strlen(s);i++){
if((s[i]>='a'&&s[i]<='z')||(s[i]>='A'&&s[i]<='Z')) eng++;
if(s[i]>='0'&&s[i]<='9') math++;
if(s[i]==' ') space++;
}
printf("%d %d %d %d",eng,math,space,strlen(s)-eng-math-space);
return 0;
}
登录后发布评论
暂无评论,来抢沙发