// 通过控制台输入一组字符串(仅包含大写字母、小写字母和数字),统计大写字母、小写字母和数字个数
时间: 2024-02-28 21:42:39 浏览: 134
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
rl.question('请输入字符串:', (str) => {
let upperCaseCount = 0;
let lowerCaseCount = 0;
let numberCount = 0;
for (let i = 0; i < str.length; i++) {
const char = str.charAt(i);
if (/[A-Z]/.test(char)) {
upperCaseCount++;
} else if (/[a-z]/.test(char)) {
lowerCaseCount++;
} else if (/[0-9]/.test(char)) {
numberCount++;
}
}
console.log(`大写字母个数:${upperCaseCount}`);
console.log(`小写字母个数:${lowerCaseCount}`);
console.log(`数字个数:${numberCount}`);
rl.close();
});
相关问题
java:// 通过控制台输入一组字符串(仅包含大写字母、小写字母和数字),统计大写字母、小写字母和数字个数
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String str = scanner.nextLine();
int upperCount = 0;
int lowerCount = 0;
int digitCount = 0;
for (int i = 0; i < str.length(); i++) {
char ch = str.charAt(i);
if (ch >= 'A' && ch <= 'Z') {
upperCount++;
} else if (ch >= 'a' && ch <= 'z') {
lowerCount++;
} else if (ch >= '0' && ch <= '9') {
digitCount++;
}
}
System.out.println("大写字母个数:" + upperCount);
System.out.println("小写字母个数:" + lowerCount);
System.out.println("数字个数:" + digitCount);
}
}
编写一个程序,由控制台输入一个字符串,统计此字符串中大写字母、小写字母、数字、空格和其他字符的个数。
可以用以下代码实现:
```python
string = input("请输入一个字符串:")
upper_count = 0 # 大写字母个数
lower_count = 0 # 小写字母个数
digit_count = 0 # 数字个数
space_count = 0 # 空格个数
other_count = 0 # 其他字符个数
for char in string:
if char.isupper():
upper_count += 1
elif char.islower():
lower_count += 1
elif char.isdigit():
digit_count += 1
elif char.isspace():
space_count += 1
else:
other_count += 1
print("大写字母个数:", upper_count)
print("小写字母个数:", lower_count)
print("数字个数:", digit_count)
print("空格个数:", space_count)
print("其他字符个数:", other_count)
```
运行程序后,控制台会提示输入一个字符串,输入完成后程序会输出统计结果。
阅读全文