用c语言编译输入一行字符。分别统计出其中英文字母、空格、数字和其他字符的个数。
时间: 2024-06-13 16:04:52 浏览: 190
C语言程序设计-输入一行字符,分别统计出英文大小写字母、空格、数字和其他字符的个数
5星 · 资源好评率100%
以下是用C语言编写的统计输入字符串中英文字母、空格、数字和其他字符个数的程序:
```c
#include <stdio.h>
int main() {
char c;
int letters = 0;
int space = 0;
int digit = 0;
int other = 0;
printf("请输入一行字符:\n");
while ((c = getchar()) != '\n') {
if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')) {
letters++;
} else if (c == ' ') {
space++;
} else if (c >= '0' && c <= '9') {
digit++;
} else {
other++;
}
}
printf("字母的个数:%d\n空格的个数:%d\n数字的个数:%d\n其他字符的个数:%d\n", letters, space, digit, other);
return 0;
}
```
阅读全文