TA贡献1846条经验 获得超7个赞
#include <algorithm>#include <string>std::string str = "Hello World";std::transform(str.begin(), str.end(),str.begin(), ::toupper);
TA贡献1806条经验 获得超8个赞
使用C+11和Touper()的简短解决方案。
for (auto & c: str) c = toupper(c);
举报