C语言代码,输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数
时间: 2023-11-25 07:09:36 浏览: 68
输入一行字符,分别统计出其中英文字母,空格,数字和其它字符的个数
好的,您的问题是关于统计字符种类的代码。以下是一个示例程序:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
int ch, letters = 0, spaces = 0, digits = 0, others = 0;
printf("请输入一行字符:\n");
while ((ch = getchar()) != '\n') {
if (isalpha(ch)) {
letters++;
} else if (isspace(ch)) {
spaces++;
} else if (isdigit(ch)) {
digits++;
} else {
others++;
}
}
printf("英文字母个数:%d\n", letters);
printf("空格个数:%d\n", spaces);
printf("数字个数:%d\n", digits);
printf("其它字符个数:%d\n", others);
return 0;
}
```
该程序使用 `getchar()` 函数读取用户输入的字符,并使用 `isalpha()`、`isdigit()`、`isspace()` 函数判断字符类型。其中,`isalpha()` 函数用于判断字母,`isdigit()` 函数用于判断数字,`isspace()` 函数用于判断空格符。如果都不是这三种类型,那么就是其它字符。
最后,程序输出统计结果。感谢您的提问,有什么需要我再帮您解答的吗?
阅读全文