输入一串字符分别统计包含英文字母空格数字其他的个数的c语言代码
时间: 2024-12-06 07:20:35 浏览: 22
输入10个字符,统计其中英文字母、空格或回车、数字字符和其他字符的个数(C语言代码)
在C语言中,你可以通过嵌套循环结合条件判断来统计输入字符串中字母、空格和数字的个数。下面是一个简单的示例代码:
```c
#include <stdio.h>
#include <ctype.h> // 包含ctype函数库,用于获取字符类型
int main() {
char input[100];
int alpha_count = 0, space_count = 0, digit_count = 0;
printf("Enter a string: ");
fgets(input, sizeof(input), stdin); // 读取用户输入,包括换行符
// 删除末尾的换行符
input[strcspn(input, "\n")] = '\0';
// 遍历输入的字符串
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++;
}
}
printf("Number of alphabets: %d\n", alpha_count);
printf("Number of spaces: %d\n", space_count);
printf("Number of digits: %d\n", digit_count);
return 0;
}
```
在这个代码中,`isalpha()`、`isspace()` 和 `isdigit()` 分别是ctype库中的函数,用于检测字符是否为字母、空白字符和数字。注意,我们使用了fgets函数读取用户的输入,并用`strcspn()`函数移除输入字符串的末尾换行符。
阅读全文