输入一行字符统计其中英文字母数字字符和其他字符的个数
时间: 2023-05-12 10:04:50 浏览: 77
好的,这个问题可以回答。以下是统计字符类型的代码:
```python
s = input("请输入一行字符:")
letters = 0
digits = 0
others = 0
for c in s:
if c.isalpha():
letters += 1
elif c.isdigit():
digits += 1
else:
others += 1
print("英文字母个数:", letters)
print("数字个数:", digits)
print("其他字符个数:", others)
```
如果您有其他问题,请继续提问。
相关问题
C++输入一行字符统计其中英文字母数字字符和其他字符的个数
C知道回答:好的,这个问题可以回答。以下是统计英文字母、数字字符和其他字符个数的 C 代码:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char str[100];
int i, alphabets = 0, digits = 0, others = 0;
printf("请输入一行字符:\n");
fgets(str, 100, stdin);
for (i = 0; str[i] != '\0'; i++) {
if (isalpha(str[i])) {
alphabets++;
} else if (isdigit(str[i])) {
digits++;
} else {
others++;
}
}
printf("英文字母个数:%d\n", alphabets);
printf("数字字符个数:%d\n", digits);
printf("其他字符个数:%d\n", others);
return 0;
}
```
这个程序可以读入一行字符,然后统计其中英文字母、数字字符和其他字符的个数。
c语言输入一行字符统计其中英文字母、数字、空格和其他字符的个数
以下是C语言输入一行字符统计其中英文字母、数字、空格和其他字符的个数的代码实现:
```c
#include <stdio.h>
#include <ctype.h>
int main()
{
char str[100];
int i, letters = 0, digits = 0, spaces = 0, others = 0;
printf("请输入一行字符:\n");
fgets(str, sizeof(str), stdin);
for (i = 0; str[i] != '\0'; i++)
{
if (isalpha(str[i])) // 判断是否为字母
{
letters++;
}
else if (isdigit(str[i])) // 判断是否为数字
{
digits++;
}
else if (isspace(str[i])) // 判断是否为空格
{
spaces++;
}
else // 其他字符
{
others++;
}
}
printf("字母个数:%d\n", letters);
printf("数字个数:%d\n", digits);
printf("空格个数:%d\n", spaces);
printf("其他字符个数:%d\n", others);
return 0;
}
```
阅读全文