.通过键盘输入一-串字符串,并分别统计出字符串中大写字母、小写字母和数字出现的次数
时间: 2023-11-16 11:21:18 浏览: 83
从键盘输入一串字符,分别统计其中的字母,数字字符和其他[文].pdf
好的,可以使用C++语言实现。以下是示例代码:
```cpp
#include <iostream>
#include <cstring>
using namespace std;
int main() {
char str[100];
int upper = 0, lower = 0, digit = 0;
cout << "请输入字符串:";
cin >> str;
int len = strlen(str);
for (int i = 0; i < len; i++) {
if (str[i] >= 'A' && str[i] <= 'Z') {
upper++;
} else if (str[i] >= 'a' && str[i] <= 'z') {
lower++;
} else if (str[i] >= '0' && str[i] <= '9') {
digit++;
}
}
cout << "大写字母出现次数:" << upper << endl;
cout << "小写字母出现次数:" << lower << endl;
cout << "数字出现次数:" << digit << endl;
return 0;
}
```
运行程序后,你可以输入任意字符串,程序会输出该字符串中大写字母、小写字母和数字出现的次数。注意,该代码仅作为示例,可能存在一些不足之处,仅供参考。
阅读全文