level 11
gameloftyou
楼主
基本设置:
Settings
----
Compiler and debugger
------
Other options
------
-finput-charset=GBK -fexec-charset=UTF-16BE
另外代码编码为WINDOWS-936即GBK
测试代码:
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
setlocale(LC_ALL,"Chinese-simplified");
wcout<<L"This is 中文。▆▇██■▓回"<<endl;
cout<<"HelloWorld!"<<endl;
//上面这句打印不出,感觉应该是-fexec-charset=UTF-16BE这句的关系,暂不知如何解决。
return 0;
}
2012年07月19日 15点07分
1
Settings
----
Compiler and debugger
------
Other options
------
-finput-charset=GBK -fexec-charset=UTF-16BE
另外代码编码为WINDOWS-936即GBK
测试代码:
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
setlocale(LC_ALL,"Chinese-simplified");
wcout<<L"This is 中文。▆▇██■▓回"<<endl;
cout<<"HelloWorld!"<<endl;
//上面这句打印不出,感觉应该是-fexec-charset=UTF-16BE这句的关系,暂不知如何解决。
return 0;
}
