用c语言输入一行字符,分别统计出其中英文字母、数字、空格和其他字符的个数。
时间: 2023-11-25 09:59:58 浏览: 21
好的,这个问题可以回答。以下是代码:
```c
#include <stdio.h>
int main(){
char str[100];
int i, letters = 0, digits = 0, spaces = 0, others = 0;
printf("请输入一行字符:\n");
gets(str);
for(i=0; str[i]!='\0'; i++){
if((str[i]>='a' && str[i]<='z') || (str[i]>='A' && str[i]<='Z'))
letters++;
else if(str[i]>='0' && str[i]<='9')
digits++;
else if(str[i]==' ')
spaces++;
else
others++;
}
printf("字母个数:%d\n", letters);
printf("数字个数:%d\n", digits);
printf("空格个数:%d\n", spaces);
printf("其他字符个数:%d\n", others);
return 0;
}
```
相关问题
用c语言的循环语句输入一行字符分别统计出其中英文字母空格数字和其他字符的个数
使用C语言的循环语句可以输入一行字符并统计其中英文字母、空格、数字和其他字符的个数。下面是一个示例代码:
```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;
}
```
该代码使用了一个while循环来读取输入的字符,然后使用if语句来判断字符的类型并相应地增加计数器的值。最后,使用printf函数输出统计结果。
用C语言编程实现,输入一行字符,分别统计出其中英文字母,空格,数字和其它字符的个数。编程实现,输入一行字符,分别统计出其中英文字母,空格,数字和其它字符的个数。
好的,这是一个很常见的编程问题,以下是一个简单的 C 语言代码实现:
```
#include <stdio.h>
#include <ctype.h>
int main() {
char str[100];
int i, letters, spaces, digits, others;
letters = spaces = digits = others = 0;
printf("请输入一行字符:\n");
gets(str);
for (i = 0; str[i] != '\0'; i++) {
if (isalpha(str[i])) {
letters++;
} else if (isspace(str[i])) {
spaces++;
} else if (isdigit(str[i])) {
digits++;
} else {
others++;
}
}
printf("输入的字符串中包含:\n");
printf("%d 个字母\n", letters);
printf("%d 个空格\n", spaces);
printf("%d 个数字\n", digits);
printf("%d 个其他字符\n", others);
return 0;
}
```
这个程序会提示用户输入一行字符,然后使用 for 循环遍历字符串中的每个字符,使用 isalpha、isspace 和 isdigit 函数判断字符的类型,最后统计出每种类型的字符的个数并输出。
阅读全文