c++统计字符串中大写字母个数
时间: 2024-04-14 09:21:40 浏览: 163
以下是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;
}
```
相关问题
c++统计字符串中大写字母的个数
可以使用以下的 C++ 代码来实现:
```cpp
#include <iostream>
#include <string>
using namespace std;
int main() {
string s = "Hello World";
int count = 0;
for (char c : s) {
if (isupper(c)) {
count++;
}
}
cout << count << endl;
return 0;
}
```
输出结果为:2
这个代码使用了 C++ 的标准库函数`isupper()`,用于判断字符是否为大写字母。遍历字符串`s`中的每个字符,如果字符是大写字母,则将计数器`count`加1。最后输出计数器的值。
devc++统计字符串中大写字母的个数
在 Dev-C++ 中,可以使用以下的 C++ 代码来实现:
```cpp
#include <iostream>
#include <string>
#include <cctype>
using namespace std;
int main() {
string s = "Hello World";
int count = 0;
for (char c : s) {
if (isupper(c)) {
count++;
}
}
cout << count << endl;
return 0;
}
```
输出结果为:2
这个代码与之前的 C++ 代码是相同的,只是在头文件中加入了`<cctype>`,用于包含`isupper()`函数的声明。在 Dev-C++ 中,头文件`<cctype>`中的函数是需要显式声明的。
阅读全文