zl程序教程

您现在的位置是:首页 >  后端

当前栏目

C++ wcout 输出中文

2023-09-11 14:13:59 时间
// 设置中文显示
wcout.imbue(locale("chs"));

// 测试
wcout << L"中文" << endl;