📅  最后修改于: 2020-09-25 14:32:39             🧑  作者: Mango
towupper() 函数在
wint_t towupper( wint_t ch );
如果存在,towupper() 函数会将ch
转换为其大写版本。如果宽字符的大写版本不存在,则保持不变。
从a到z的小写字母分别转换为从A到Z的大写字母。
#include
#include
#include
#include
using namespace std;
int main()
{
setlocale(LC_ALL, "en_US.UTF-8");
wchar_t str[] = L"Ĵōhn Deńvėr";
wcout << L"The uppercase version of \"" << str << L"\" is ";
for (int i=0; i
运行该程序时,输出为:
The uppercase version of "Ĵōhn Deńvėr" is ĴŌHN DEŃVĖR