帮我写一个c语言代码,输入一行字符,分别统计出其中的英文字母、空格、数字和其它字符的个数。
时间: 2023-11-25 22:42:19 浏览: 50
C语言程序设计-输入一行字符,分别统计出英文大小写字母、空格、数字和其他字符的个数
5星 · 资源好评率100%
好的,以下是 c 语言代码:
```
#include <stdio.h>
#include <ctype.h>
int main() {
char inputString[100];
int letters = 0, spaces = 0, digits = 0, others = 0;
printf("请输入一行字符:");
fgets(inputString, 100, stdin);
for (int i = 0; inputString[i] != '\0'; i++) {
if (isalpha(inputString[i])) {
letters++;
} else if (isspace(inputString[i])) {
spaces++;
} else if (isdigit(inputString[i])) {
digits++;
} else {
others++;
}
}
printf("英文字母个数:%d\n", letters);
printf("空格个数:%d\n", spaces);
printf("数字个数:%d\n", digits);
printf("其它字符个数:%d\n", others);
return 0;
}
```
希望对你有所帮助!
阅读全文