c语言编程题:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。
时间: 2024-10-14 11:13:26 浏览: 162
在C语言编程中,你可以使用标准库函数来实现这个功能。下面是一个简单的示例程序,它会接收用户输入的一行字符,并统计字母、空格、数字和其他字符的数量:
```c
#include <stdio.h>
#include <ctype.h> // 包含处理字符类别(如字母、数字等)的函数
int main() {
char input[100];
int alpha_count = 0, space_count = 0, digit_count = 0, other_count = 0;
printf("请输入一行字符: ");
fgets(input, sizeof(input), stdin); // 使用fgets读取一行字符,包括换行符
for(int i = 0; input[i] != '\0'; i++) { // 遍历字符串中的每个字符
if(isalpha(input[i])) { // 判断是否为字母
alpha_count++;
} else if isspace(input[i])) { // 判断是否为空格
space_count++;
} else if(isdigit(input[i])) { // 判断是否为数字
digit_count++;
} else { // 其他字符(包括标点符号、特殊字符)
other_count++;
}
}
printf("英文字母: %d\n", alpha_count);
printf("空格: %d\n", space_count);
printf("数字: %d\n", digit_count);
printf("其他字符: %d\n", other_count);
return 0;
}
阅读全文