编写一段c++代码输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。
时间: 2023-04-04 11:00:56 浏览: 143
输入一行字符,分别统计出其中的英文字母、空格、数字、和其他字符个数
好的,这是一个关于C语言的问题。以下是代码示例:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char c;
int letter = , space = , digit = , other = ;
printf("请输入一行字符:\n");
while ((c = getchar()) != '\n') {
if (isalpha(c)) {
letter++;
} else if (isspace(c)) {
space++;
} else if (isdigit(c)) {
digit++;
} else {
other++;
}
}
printf("其中英文字母个数为:%d\n", letter);
printf("其中空格个数为:%d\n", space);
printf("其中数字个数为:%d\n", digit);
printf("其中其它字符个数为:%d\n", other);
return ;
}
```
希望能对您有所帮助。
阅读全文