问题描述
- 请问C++的toupper函数怎么用
- #include
using namespace std;
int main()
{
string str=""helloworld"";
for(int i=0;i<str.size();++i)
toupper(str[i]);
cout<<str<<endl;
return 0;
}
请问我的程序哪里错了
为什么不能将小写字母转换为大写字母?
解决方案
str[i] = toupper(str[i])
解决方案二:
toupper的返回值是转换后的大写字母,你需要接收返回值
解决方案三:
toupper函数
toupper() 函数
toupper()函数
时间: 2024-11-19 02:06:38