我一直在努力使用 Visual Studio 在 Windows 中打印版权符号。我知道 0xA9 是版权符号的 ASCII 码,它适用于非 Windows 平台。但在 Windows 上,我无法使用相同的代码打印版权符号。
#include "iostream.h"
using namespace std;
int main(int argc, char * argv[])
{
cout << (char)0xA9 << " Copyright symbol" << endl;
return 0;
}
Linux/HP-UX 和 AIX 上的输出:© Copyright symbol
Windows 上的输出:⌐ Copyright symbol
我是 Windows 新手,谁能帮帮我。