用c语言编写一个代码:输入一串字符串,统计字母、数字、空格以及其他字符的个数,使用while语句
时间: 2024-10-19 21:06:11 浏览: 327
在C语言中,你可以使用while循环结合ASCII码来实现这个功能。这里是一个简单的示例,用户输入字符串,然后统计其中的字母、数字、空格和其他字符的数量:
```c
#include <stdio.h>
#include <ctype.h> // 包含处理字符类型函数
int main() {
char input[100];
int alpha_count = 0, digit_count = 0, space_count = 0, other_count = 0;
int i = 0;
while (input[i] != '\0') { // 遍历直到遇到字符串结尾
if (isalpha(input[i])) { // 判断是否为字母
alpha_count++;
} else if (isdigit(input[i])) { // 判断是否为数字
digit_count++;
} else if (isspace(input[i])) { // 判断是否为空格
space_count++;
} else { // 其他字符(如特殊字符)
other_count++;
}
i++; // 移动指针到下一个字符
}
printf("字母数量:%d\n", alpha_count);
printf("数字数量:%d\n", digit_count);
printf("空格数量:%d\n", space_count);
printf("其他字符数量:%d\n", other_count);
return 0;
}
`
在这个代码里,`isalpha()`、`isdigit()` 和 `isspace()` 分别用于检查字符是否为字母、数字和空格。如果不是这些,我们就认为它属于其他字符。
阅读全文