编写一个c语言程序,输入一行字符,分别统计出其中英文字母、空格、数字和其他字符的个数
时间: 2024-05-09 07:19:48 浏览: 94
num,c语言游泳源码,c语言程序
```c
#include <stdio.h>
#include <ctype.h>
int main() {
int letter = 0, space = 0, digit = 0, other = 0;
char ch;
printf("请输入一行字符:\n");
while((ch = getchar()) != '\n') {
if(isalpha(ch)) {
letter++;
} else if(isspace(ch)) {
space++;
} else if(isdigit(ch)) {
digit++;
} else {
other++;
}
}
printf("字母个数:%d\n", letter);
printf("空格个数:%d\n", space);
printf("数字个数:%d\n", digit);
printf("其他字符个数:%d\n", other);
return 0;
}
```
阅读全文