【c++】中文设置

#include <iostream>
#include <string>
#include<locale>
using namespace std;
int i = 3;

int main()
{
    setlocale(LC_ALL, "zh_CN.UTF-8");
    wchar_t a[] = L"你好";
    wcout << a << endl;
    
}

 

你可能感兴趣的:(C++)