gpt4 book ai didi

c++ - Isupper/tolower 不起作用

转载 作者:行者123 更新时间:2023-11-28 05:01:43 27 4
gpt4 key购买 nike

这就是问题所在,我的程序没有将大写字母更改为小写字母。我不明白为什么不。

#include <iostream>
#include <ctype.h>

using namespace std;

int main(){
string str="hEhEhehe";
for(int i=0;i<str.size();i++){
if(isupper(str.at(i)))
tolower(str.at(i));
}
cout << str;
return 0;
}

最佳答案

您需要将值分配回字符串的索引。

if(isupper(str.at(i)))
str[i] = tolower(str.at(i));

关于c++ - Isupper/tolower 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45774614/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com