输入一段文字,共有五行,分别统计其中的大写英文字母,小写英文字母,数字,空格和其他字符,并输出结果用C语言实现
时间: 2024-06-13 17:08:33 浏览: 227
以下是用C语言实现统计输入文字中大写英文字母,小写英文字母,数字,空格和其他字符的代码:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char str[5][100];
int i, j, upper, lower, digit, space, other;
// 输入五行文字
for (i = 0; i < 5; i++) {
printf("请输入第%d行文字:", i+1);
fgets(str[i], 100, stdin);
}
// 统计各种字符个数
for (i = 0; i < 5; i++) {
upper = lower = digit = space = other = 0;
for (j = 0; str[i][j] != '\0'; j++) {
if (isupper(str[i][j])) {
upper++;
} else if (islower(str[i][j])) {
lower++;
} else if (isdigit(str[i][j])) {
digit++;
} else if (isspace(str[i][j])) {
space++;
} else {
other++;
}
}
// 输出统计结果
printf("第%d行文字中:\n", i+1);
printf("大写英文字母:%d个\n", upper);
printf("小写英文字母:%d个\n", lower);
printf("数字:%d个\n", digit);
printf("空格:%d个\n", space);
printf("其他字符:%d个\n", other);
}
return 0;
}
```
阅读全文