用c语言输入一行字符,分别统计出其中英文字母、空格、数字和其他的个数
时间: 2024-06-13 18:05:24 浏览: 117
这段代码使用了C语言,通过输入一行字符,统计其中英文字母、空格、数字和其他字符的个数。其中,ch、s、d、o分别表示英文字母、空格、数字和其他字符的个数。在while循环中,通过getchar()函数逐个读取输入的字符,然后通过if语句判断该字符属于哪一类,最后将对应的计数器加1。最后,使用printf函数输出统计结果。
```
// 代码类型为C
#include <stdio.h>
int main() {
char c;
int ch,s,d,o;
ch=0;
s=0;
d=0;
o=0;
while((c=getchar())!='\n') {
if(c>='a'&&c<='z'||c>='A'&&c<='Z')
ch++;
else if(c==' ')
s++;
else if(c>='0'&&c<='9')
d++;
else
o++;
}
printf("char=%d space=%d digit=%d others=%d\n",ch,s,d,o);
return 0;
}
```
相关问题
用C语言 输入一行字符,分别统计出其中英文字母、数字、空格和其他字符的个数。 输入 一行字符 输出 统计值
以下是两种C语言统计字符的例子:
1.常规计算
```c
#include <stdio.h>
int main(){
char c;
int letters=0,space=0,digit=0,other=0;
printf("请输入一行字符:\n");
while((c=getchar())!='\n'){
if(c>='a'&&c<='z'||c>='A'&&c<='Z') letters++;
else if(c==' ') space++;
else if(c>='0'&&c<='9') digit++;
else other++;
}
printf("字母数:%d\n空格数:%d\n数字数:%d\n其他字符数:%d",letters,space,digit,other);
return 0;
}
```
2.普通函数调用
```c
#include <stdio.h>
#include <string.h>
void count(char c[]){
int letters=0,space=0,digit=0,other=0;
int i;
for (i = 0; c[i]; i++) {
if(c[i]>='a'&&c[i]<='z'||c[i]>='A'&&c[i]<='Z') letters++;
else if(c[i]==' ') space++;
else if(c[i]>='0'&&c[i]<='9') digit++;
else other++;
}
printf("字母数:%d\n空格数:%d\n数字数:%d\n其他字符数:%d",letters,space,digit,other);
}
int main(){
char c[32];
printf("请输入一行字符:\n");
gets(c);
count(c);
return 0;
}
```
C语言编程输入一行字符分别统计出其中英文字母,空格,数字和其他字符的个数
好的,我可以回答这个问题。请看下面的代码:
```
#include <stdio.h>
#include <ctype.h>
int main() {
char input[100];
int letters = 0;
int spaces = 0;
int digits = 0;
int others = 0;
printf("请输入一行字符:\n");
fgets(input, 100, stdin);
for (int i = 0; input[i] != '\0'; i++) {
if (isalpha(input[i])) {
letters++;
} else if (isspace(input[i])) {
spaces++;
} else if (isdigit(input[i])) {
digits++;
} else {
others++;
}
}
printf("字符数:%d\n英文字母数:%d\n空格数:%d\n数字数:%d\n其他字符数:%d\n", letters + spaces + digits + others, letters, spaces, digits, others);
return 0;
}
```
这个程序使用了 `fgets()` 函数来读取一行字符,然后使用 `isalpha()`、`isspace()` 和 `isdigit()` 函数来判断每个字符的类型。最后统计出各种类型字符的数量并输出。
阅读全文