@要gpt号请找管理 输入一行字符,分别统计出其中的英文字母、空格、数字和其他字符的个数。求c语言中while语句代码
时间: 2023-09-03 10:12:48 浏览: 114
输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数
下面是统计字符个数的C语言代码,使用了while循环和ASCII码:
```c
#include <stdio.h>
int main() {
char input;
int letter = 0, space = 0, digit = 0, other = 0;
printf("请输入一行字符:\n");
while ((input = getchar()) != '\n') {
if ((input >= 'a' && input <= 'z') || (input >= 'A' && input <= 'Z')) {
letter++;
} else if (input == ' ') {
space++;
} else if (input >= '0' && input <= '9') {
digit++;
} else {
other++;
}
}
printf("其中英文字母有%d个,空格有%d个,数字有%d个,其他字符有%d个。\n", letter, space, digit, other);
return 0;
}
```
代码中使用了getchar()函数逐个读取输入的字符,如果是英文字母、空格或数字,则对应变量加1;否则,其他字符个数加1。最后输出各个字符的个数。
阅读全文