一、c++输出中文字符 #include<iostream> #include<locale> using namespace std; void main() { setlocale(LC_ALL,"chs"); wchar_t wt[] = L"中"; wcout<<wt<<endl; }