输入一行字符,统计字母,数字,空格和其他字符的个数
时间: 2023-10-26 07:13:14 浏览: 62
以下是一个简单的 Python 代码实现:
```python
str = input("请输入一行字符:")
letters = 0
digits = 0
spaces = 0
others = 0
for i in str:
if i.isalpha():
letters += 1
elif i.isdigit():
digits += 1
elif i.isspace():
spaces += 1
else:
others += 1
print("字母个数:", letters)
print("数字个数:", digits)
print("空格个数:", spaces)
print("其他字符个数:", others)
```
输入一行字符后,程序会遍历每个字符,然后使用 `isalpha()`、`isdigit()` 和 `isspace()` 方法判断字符的类型,分别统计字母、数字和空格的个数。如果字符不属于这三种类型,则将其归为其他字符。最后输出结果。
相关问题
从键盘输入一行字符统计字母空格数字及其其他字符的个数C语言
以下是两种C语言统计输入字符中字母、空格、数字和其他字符个数的方法:
方法一:常规计算
```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;
}
```
方法二:普通函数调用
```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;
}
```
python输入一行字符统计英文字母和空格数字和其它字符的个数
这道题目要求我们输入一行字符,然后分别统计其中英文字母、空格、数字和其它字符的个数。可以使用 Python 代码来实现。以下是一个例子:
```
line = input("请输入一行字符:")
letters = 0
spaces = 0
digits = 0
others = 0
for i in line:
if i.isalpha():
letters += 1
elif i.isspace():
spaces += 1
elif i.isdigit():
digits += 1
else:
others += 1
print("在输入的字符串中,有{}个字母,{}个空格,{}个数字,{}个其它字符。".format(letters, spaces, digits, others))
```
这段代码首先让用户输入一行字符,然后遍历每个字符,判断它是字母、空格、数字还是其它字符,并分别统计它们的个数。最后输出结果。
--相关问题--:
阅读全文