可以使用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函數不僅可以提高代碼的可讀性,還能夠簡化代碼,使其更加易于理解。