4.输入一行字符以@作结束标志,分别统计其中英文字母、空格、数字和其它字符的个数。C语言
时间: 2023-11-25 08:50:24 浏览: 119
num,c语言游泳源码,c语言程序
以下是C语言的代码实现:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char c;
int letter = 0, space = 0, digit = 0, other = 0;
printf("请输入一行字符,以@作为结束标志:\n");
while ((c = getchar()) != '@') {
if (isalpha(c)) {
letter++;
} else if (isspace(c)) {
space++;
} else if (isdigit(c)) {
digit++;
} else {
other++;
}
}
printf("输入的字符中,英文字母有%d个,空格有%d个,数字有%d个,其它字符有%d个。\n", letter, space, digit, other);
return 0;
}
```
阅读全文