#include <iostream>
#include <locale>
using namespace std;
int main()
{
setlocal(LC_ALL,”chs”);//设置本地语言(全部设置,简体中文)
wchar_t wt[] = L”中”;
wcout<<wt;
return 0;
}