码迷,mamicode.com
首页 > 编程语言 > 详细

c++中显示中文

时间:2020-05-21 19:41:10      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:显示   lc_all   stream   clu   int   cst   end   main   输出   

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]);//使用宽字符型输出函数wprintf
	}
	cout << endl;
	system("pause");
	return 0;
}

c++中显示中文

标签:显示   lc_all   stream   clu   int   cst   end   main   输出   

原文地址:https://www.cnblogs.com/VictorierJwr/p/12932637.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!