可以使用C++中的toupper函数来改善代码的可读性,将输入的字符串转换为大写形式。下面是一个示例代码:
#include <iostream>
#include <cctype>
int main() {
std::string str = "hello world";
for (char& c : str) {
c = std::toupper(c);
}
std::cout << "Uppercase string: " << str << std::endl;
return 0;
}
这段代码将输入的字符串"hello world"转换为大写形式,并输出结果"HELLO WORLD"。使用toupper函数不仅可以提高代码的可读性,还能够简化代码,使其更加易于理解。