c++中显⽰中⽂C++中显⽰中⽂问题
#include <iostream>
#include <clocale>//必须包含下⾯三个头⽂件
#include <cwchar>
#include <cstdlib>
using namespace std;
int main()
{
wchar_t c[] = {L'你', L'好', L'中', L'国', L'欢', L'迎', L'你' };//使⽤宽字符型设置中⽂字符
//L 表⽰当前为宽字符
setlocale(LC_ALL, "chs");//设置语⾔为中⽂头⽂件#include<locale.h>
for (int i = 0; i < 7; i++)
{
wprintf(L"%lc", c[i]);//使⽤宽字符型输出函数wprintfinclude中文
}
cout << endl;
system("pause");
return 0;
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。