level 5
mswang2005
楼主
如下代码:
#include <iostream>
using namespace std;
int main()
{
wchar_t* a=L"中国银行";
setlocale(LC_ALL,"");
wcout<<a;
return 0;
}
xp下正常输出
win 8.1 x64 下确无法输出中文!
求解!!
2014年01月22日 03点01分
1
#include <iostream>
using namespace std;
int main()
{
wchar_t* a=L"中国银行";
setlocale(LC_ALL,"");
wcout<<a;
return 0;
}
xp下正常输出
win 8.1 x64 下确无法输出中文!
求解!!