C语言题目描述 输入一行字符,分别统计并依次输出其中英文字母,空格,数字和其它字符的个数
时间: 2023-11-23 14:58:13 浏览: 139
以下是C语言的代码,可以实现输入一行字符,统计其中英文字母、空格、数字和其他字符的个数,并依次输出:
```c
#include <stdio.h>
int main() {
char c;
int ch, s, d, o;
ch = 0;
s = 0;
d = 0;
o = 0;
while ((c = getchar()) != '\n') {
if (c >= 'a' && c <= 'z' || c >= 'A' && c <= 'Z')
ch++;
else if (c == ' ')
s++;
else if (c >= '0' && c <= '9')
d++;
else
o++;
}
printf("char=%d space=%d digit=%d others=%d\n", ch, s, d, o);
return 0;
}
```
相关问题
C语言题目描述 输入一行字符,分别统计并依次输出其中英文字母,空格,数字和其它字符的个数要求用字符数组
以下是C语言的代码,用于输入一行字符,分别统计并依次输出其中英文字母、空格、数字和其他字符的个数,要求用字符数组:
```c
#include <stdio.h>
#include <string.h>
int main()
{
char str[100];
int ch = 0, s = 0, d = 0, o = 0;
printf("请输入一行字符:");
fgets(str, 100, stdin);
for (int i = 0; i < strlen(str); i++)
{
if ((str[i] >= 'a' && str[i] <= 'z') || (str[i] >= 'A' && str[i] <= 'Z'))
ch++;
else if (str[i] == ' ')
s++; else if (str[i] >= '0' && str[i] <= '9')
d++;
else
o++;
}
printf("char=%d space=%d digit=%d others=%d\n", ch, s, d, o);
return 0;
}
```
C语言题目描述 输入一行字符,分别统计出其中英文字母、空格、数字和其他字符的个数。 输入 输入一行字符,以回车符结束 输出 分别输出字母、空格、数字和其它字符的个数
这道题目要求我们输入一行字符,然后统计其中的英文字母、空格、数字和其他字符的个数。下面是C语言的代码实现:
```c
#include <stdio.h>
int main() {
char ch;
int space = 0, number = 0, character = 0, other = 0;
ch = getchar(); // 字符输入
while (ch != '\n') { // '\n'是回车
if (ch == ' ') { // 字符ch为空格
space++;
} else if (ch >= '0' && ch <= '9') { // 字符为数字0~9
number++;
} else if (ch >= 'a' && ch <= 'z' || ch >= 'A' && ch <= 'Z') { // 字符为字母a~z,A~Z
character++;
} else {
other++;
}
ch = getchar();
}
printf("%d %d %d %d", character, space, number, other);
return 0;
}
```
这段代码中,我们使用了getchar()函数来输入字符,然后使用while循环来遍历输入的字符。在循环中,我们使用if语句来判断字符的类型,然后分别统计字母、空格、数字和其他字符的个数。最后,我们使用printf()函数输出结果。
阅读全文