c语言分类统计字符个数,输入一行文字,统计其中的大写字母、小写字母、 空格、数字以及其它字符各有多少。试编写相应程序。
时间: 2023-05-26 12:05:21 浏览: 107
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char line[100];
int capitals = 0, lowers = 0, spaces = 0, digits = 0, others = 0;
fgets(line, 100, stdin);
for (int i = 0; line[i] != '\0'; i++) {
if (isupper(line[i]))
capitals++;
else if (islower(line[i]))
lowers++;
else if (isspace(line[i]))
spaces++;
else if (isdigit(line[i]))
digits++;
else
others++;
}
printf("Capitals: %d\n", capitals);
printf("Lowers: %d\n", lowers);
printf("Spaces: %d\n", spaces);
printf("Digits: %d\n", digits);
printf("Others: %d\n", others);
return 0;
}
```
相关问题
c语言:分类统计字符个数:输入一行文字,统计其中的大写字母、小写字母、空格、数字以及其他字符各有多少。试编写相应程序。
以下是C语言的代码实现:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char c;
int upper = 0, lower = 0, space = 0, digit = 0, other = 0;
printf("请输入一行文字:\n");
while ((c = getchar()) != '\n') {
if (isupper(c)) {
upper++;
} else if (islower(c)) {
lower++;
} else if (isspace(c)) {
space++;
} else if (isdigit(c)) {
digit++;
} else {
other++;
}
}
printf("大写字母:%d\n", upper);
printf("小写字母:%d\n", lower);
printf("空格:%d\n", space);
printf("数字:%d\n", digit);
printf("其他字符:%d\n", other);
return 0;
}
```
运行程序后,会提示用户输入一行文字,然后通过循环逐个读取字符并根据其类型进行计数,最后输出各类字符的数量。其中,`isupper`、`islower`、`isspace` 和 `isdigit` 都是C语言中的字符判断函数。
c语言输入一行文字,找出其中大写字母、小写字母、空格、数字以及其他字符各有多少?
好的,这是一个关于C语言的问题。
你可以使用C语言的字符数组和循环语句来实现这个功能。首先,你需要定义一个字符数组来存储输入的一行文字。然后,使用循环逐个读取字符,并且判断它是大写字母、小写字母、空格、数字还是其他字符。可以使用C语言中的 isupper()、islower()、isspace()、isdigit() 等函数来进行判断。最后,统计出每种字符类型出现的次数即可。
以下是一个示例代码:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char str[100];
int upper = 0, lower = 0, space = 0, digit = 0, other = 0;
printf("请输入一行文字:");
fgets(str, 100, stdin);
for (int i = 0; str[i] != '\0'; i++) {
if (isupper(str[i])) {
upper++;
} else if (islower(str[i])) {
lower++;
} else if (isspace(str[i])) {
space++;
} else if (isdigit(str[i])) {
digit++;
} else {
other++;
}
}
printf("大写字母:%d\n", upper);
printf("小写字母:%d\n", lower);
printf("空格:%d\n", space);
printf("数字:%d\n", digit);
printf("其他字符:%d\n", other);
return 0;
}
```
希望能对你有所帮助!
阅读全文