输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。c语言
时间: 2024-06-13 08:09:48 浏览: 118
C语言程序设计-输入一行字符,分别统计出英文大小写字母、空格、数字和其他字符的个数
5星 · 资源好评率100%
以下是一个C语言程序,可以输入一行字符并统计其中英文字母、空格、数字和其他字符的个数:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char c;
int letters = 0, spaces = 0, digits = 0, others = 0;
printf("请输入一行字符:\n");
while ((c = getchar()) != '\n') {
if (isalpha(c)) {
letters++;
} else if (isspace(c)) {
spaces++;
} else if (isdigit(c)) {
digits++;
} else {
others++;
}
}
printf("该行字符中字母数为:%d,空格数为:%d,数字数为:%d,其他字符为:%d\n", letters, spaces, digits, others);
return 0;
}
```
阅读全文