解题思路:
多用用ctype里面的函数就行了
注意事项:
要现用isgraph函数,再用isgraph函数,不然会全部归类为isgraph函数的数上
参考代码:
#include <stdio.h>
#include <ctype.h>
#define maxn 1010
char a[maxn];
int main()
{
int eng = 0,num = 0,kong = 0,other = 0;
gets(a);
for(int i = 0; a[i] != '\0'; i++){
if(isalpha(a[i])) eng++;
else if(isdigit(a[i])) num++;
else if(isgraph(a[i])) other++;
else kong++;
}
printf("%d %d %d %d",eng,num,kong,other);
return 0;
}
0.0分
4 人评分