c++统计字符串中大写字母个数
时间: 2024-04-14 08:21:40 浏览: 151
计算字符中不同字符出现的次数
以下是C++统计字符串中大写字母个数的代码:
```cpp
#include <iostream>
#include <string>
using namespace std;
int main() {
string str;
int count = 0;
cout << "请输入一个字符串:";
getline(cin, str); // 获取一行输入
for (int i = 0; i < str.length(); i++) {
if (isupper(str[i])) { // 判断是否为大写字母
count++;
}
}
cout << "大写字母个数为:" << count << endl;
return 0;
}
```
阅读全文