C语言写程序:输入一行字符,分别统计其中的英文字母、空格、数字和其他字符的个数
时间: 2023-11-23 21:54:18 浏览: 92
这是一段C语言程序,它的功能是输入一行字符,然后统计其中的英文字母、空格、数字和其他字符的个数。程序使用了gets函数来获取用户输入的字符串,然后使用for循环遍历字符串中的每个字符,根据字符的类型进行统计。最后输出统计结果。
以下是回答:
这段C语言程序的功能是输入一行字符,然后统计其中的英文字母、空格、数字和其他字符的个数。程序使用了gets函数来获取用户输入的字符串,然后使用for循环遍历字符串中的每个字符,根据字符的类型进行统计。最后输出统计结果。
具体来说,程序使用了四个变量来分别统计英文字母、数字、空格和其他字符的个数。在for循环中,使用了if语句来判断当前字符的类型,并根据类型对相应的变量进行加一操作。最后,使用printf函数输出统计结果。
相关问题
C语言编写程序:输入一行字符,分别统计出其中英文字母、空格、数字和其他字符的个数
以下是统计字符个数的 C 语言代码:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char line[100];
int i, alphabet = 0, digit = 0, space = 0, other = 0;
printf("请输入一行字符: ");
fgets(line, sizeof(line), stdin);
for (i = 0; line[i] != '\0'; ++i) {
if (isalpha(line[i])) {
++alphabet;
}
else if (isdigit(line[i])) {
++digit;
}
else if (isspace(line[i])) {
++space;
}
else {
++other;
}
}
printf("英文字母个数: %d\n", alphabet);
printf("数字个数: %d\n", digit);
printf("空格个数: %d\n", space);
printf("其他字符个数: %d\n", other);
return 0;
}
```
这段代码使用了 for 循环遍历输入的字符数组,对每个字符进行判断,若是英文字母则 alphabet++,若是数字则 digit++,若是空格则 space++,其他字符则 other++。最终输出各个字符的个数。注意,需要包含头文件 ctype.h 才能使用 isalpha 和 isdigit 函数。
c语言输入一行字符分别统计其中英文字母 空格 数字 和其他字符的个数
好的,我知道了。以下是 c 语言统计字符的代码:
```
#include <stdio.h>
#include <ctype.h>
int main() {
char input;
int letters = 0, digits = 0, spaces = 0, others = 0;
printf("请输入一行字符:\n");
while ((input = getchar()) != '\n') {
if (isalpha(input)) {
letters++;
} else if (isdigit(input)) {
digits++;
} else if (isspace(input)) {
spaces++;
} else {
others++;
}
}
printf("字母个数:%d\n", letters);
printf("数字个数:%d\n", digits);
printf("空格个数:%d\n", spaces);
printf("其他字符个数:%d\n", others);
return 0;
}
```
输入输出示例:
```
请输入一行字符:
Hello World 123!
字母个数:10
数字个数:3
空格个数:2
其他字符个数:1
```
阅读全文