用c语言输入一行字符,分别统计出其中英文字母、空格、数字和其他字符的个数。
时间: 2023-11-25 13:01:17 浏览: 65
可以的,这是一个常见的编程题目。您可以使用C语言中的字符数组和循环语句来实现。以下是代码示例:
```
#include <stdio.h>
#include <ctype.h>
int main(){
char str[1000];
int i, digits, letters, spaces, others;
printf("请输入一行字符:");
fgets(str, sizeof(str), stdin);
digits = letters = spaces = others = 0;
for(i = 0; str[i] != '\0'; i++){
if(isdigit(str[i]))
digits++;
else if(isalpha(str[i]))
letters++;
else if(str[i] == ' ')
spaces++;
else
others++;
}
printf("数字个数:%d\n", digits);
printf("字母个数:%d\n", letters);
printf("空格个数:%d\n", spaces);
printf("其他字符个数:%d\n", others);
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()` 函数来判断每个字符的类型。最后统计出各种类型字符的数量并输出。
阅读全文