我是c++新手,想写一段很简单的代码,但是结果不对,不知道怎么解决。
代码是:
#include <iostream>
#include <string>
using namespace std;
int main() {
string test_string = "aáeéöôőüűč♥♦♣♠";
cout << test_string << endl;
return 0;
}
但结果是:a├íe├ę├Â├┤┼Ĺ├╝┼▒─ŹÔÖąÔÖŽÔÖúÔÖá
我在 Windows 上,使用 Code::Blocks。