![]() |
#2
xg56992011-08-17 19:31
|
#include <iostream>
#include <locale>
using namespace std;
int main()
{
setlocale(LC_ALL,"chs");
wchar_t wt[]=L"中";
wcout<<wt;
return 0;
}
输出以后内容为空,不知道哪里的问题.