我想显示“中文测试”在编辑的时候却出现如下情况:“中文??”请问各位大虾如何设置?
#include <iostream>
using std::cout;
using std::endl;
using std::cin;
int main() {
int yards=0;
cout << endl
<< "中文??"
<< endl;
cin>>yards;
return 0;
}
6 个解决方案
#1
#include <iostream>
using std::cout;
using std::endl;
using std::cin;
int main() {
int yards=0;
cout << endl
<< "中文测试"
<< endl;
cin>>yards;
return 0;
}
//// 有什么问题,很怪
using std::cout;
using std::endl;
using std::cin;
int main() {
int yards=0;
cout << endl
<< "中文测试"
<< endl;
cin>>yards;
return 0;
}
//// 有什么问题,很怪
#2
用英文原版 ,, 你是不是设置有问题/?/?
我怎么好的/?
我怎么好的/?
#3
这是vc编辑器的问题:)不用理他,结果对就行了
#4
编辑器字符集不全
#5
我在control Panel中的Reginal and language Options中的 standards and formats中设置成Chinses(RPC)就可以了,以前设置成韩语就出现了问题
#6
谢谢各位指教~
#1
#include <iostream>
using std::cout;
using std::endl;
using std::cin;
int main() {
int yards=0;
cout << endl
<< "中文测试"
<< endl;
cin>>yards;
return 0;
}
//// 有什么问题,很怪
using std::cout;
using std::endl;
using std::cin;
int main() {
int yards=0;
cout << endl
<< "中文测试"
<< endl;
cin>>yards;
return 0;
}
//// 有什么问题,很怪
#2
用英文原版 ,, 你是不是设置有问题/?/?
我怎么好的/?
我怎么好的/?
#3
这是vc编辑器的问题:)不用理他,结果对就行了
#4
编辑器字符集不全
#5
我在control Panel中的Reginal and language Options中的 standards and formats中设置成Chinses(RPC)就可以了,以前设置成韩语就出现了问题
#6
谢谢各位指教~