输入一行字符,找出其中大写字母、小写字母、空格、数字及其他字符各有多少。
时间: 2024-06-14 22:04:44 浏览: 170
输入一行字符,分别统计出其中的英文字母、空格、数字、和其他字符个数
以下是一个C++的例子,用于统计输入字符串中大写字母、小写字母、空格、数字和其他字符的个数:
```cpp
#include <iostream>
using namespace std;
int main() {
char str[100];
int uppercase = 0, lowercase = 0, digits = 0, spaces = 0, others = 0;
cout << "请输入一行字符:" << endl;
cin.getline(str, 100);
for (int i = 0; str[i
阅读全文