devc++统计字符串中大写字母的个数
时间: 2023-08-25 15:04:24 浏览: 88
在 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>`中的函数是需要显式声明的。
相关问题
devc++统计字符串中大写字母和小写字母的个数
在 Dev-C++ 中,可以使用以下的 C++ 代码来实现:
```cpp
#include <iostream>
#include <string>
#include <cctype>
using namespace std;
int main() {
string s = "Hello World";
int upper_count = 0, lower_count = 0;
for (char c : s) {
if (isupper(c)) {
upper_count++;
} else if (islower(c)) {
lower_count++;
}
}
cout << "Number of uppercase letters: " << upper_count << endl;
cout << "Number of lowercase letters: " << lower_count << endl;
return 0;
}
```
输出结果为:
```
Number of uppercase letters: 2
Number of lowercase letters: 8
```
这个代码与之前的代码类似,只是增加了一个计数器`lower_count`,用于统计小写字母的个数。在遍历字符串`s`中的每个字符时,如果字符是大写字母,则将计数器`upper_count`加1;如果字符是小写字母,则将计数器`lower_count`加1。最后输出两个计数器的值。
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。最后输出计数器的值。
阅读全文