我必须编写一个函数来遍历一个字符串,找到所有存在的大写字母并将它们变成小写。我决定添加一些代码来显示找到了哪些字母以及找到了多少。尽管在每次编译中,'cnt' 的值都会产生荒谬的结果。
#include <iostream>
#include <vector>
using namespace std;
int upper(string s) {
int cnt;
vector<char> v{};
for (auto& i : s) {
if (isupper(i)) {
v.push_back(i);
i = tolower(i);
++cnt;
}
}
cout << "new string is '" << s << "'\n"
<< "number of capitals found is " << cnt << "\n"
<< "letters found were ";
for (auto l : v)
cout << l << " ";
return 0;
}
int main() {
string l = "This IS a TeSt";
upper(l);
}
我确定我一定在循环中做错了什么,但无论问题是什么,我都找不到它。