输入10个字符,统计其中英文字母、空格、数字字符和其他字符的个数。c语言
时间: 2024-05-14 14:11:52 浏览: 82
实现:
```c
#include <stdio.h>
int main()
{
char ch;
int letter = 0, space = 0, digit = 0, other = 0;
printf("请输入10个字符:\n");
for(int i=0; i<10; i++)
{
scanf("%c", &ch);
if(ch >= 'a' && ch <= 'z' || ch >= 'A' && ch <= 'Z')
letter++;
else if(ch == ' ')
space++;
else if(ch >= '0' && ch <= '9')
digit++;
else
other++;
}
printf("英文字母个数:%d\n", letter);
printf("空格个数:%d\n", space);
printf("数字字符个数:%d\n", digit);
printf("其他字符个数:%d\n", other);
return 0;
}
```
运行结果:
```
请输入10个字符:
a b c 1 2 3 + - * /
英文字母个数:3
空格个数:3
数字字符个数:3
其他字符个数:1
```
相关问题
c语言输入一行字符统计其中英文字母、数字、空格和其他字符的个数
以下是C语言输入一行字符统计其中英文字母、数字、空格和其他字符的个数的代码实现:
```c
#include <stdio.h>
#include <ctype.h>
int main()
{
char str[100];
int i, letters = 0, digits = 0, spaces = 0, others = 0;
printf("请输入一行字符:\n");
fgets(str, sizeof(str), stdin);
for (i = 0; str[i] != '\0'; i++)
{
if (isalpha(str[i])) // 判断是否为字母
{
letters++;
}
else if (isdigit(str[i])) // 判断是否为数字
{
digits++;
}
else if (isspace(str[i])) // 判断是否为空格
{
spaces++;
}
else // 其他字符
{
others++;
}
}
printf("字母个数:%d\n", letters);
printf("数字个数:%d\n", digits);
printf("空格个数:%d\n", spaces);
printf("其他字符个数:%d\n", others);
return 0;
}
```
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
```
阅读全文