Answer the question
In order to leave comments, you need to log in
How to correctly display Cyrillic in a C++ console application?
#include <iostream>
#include <locale>
using namespace std;
int main()
{
setlocale(LC_ALL,"Russian");
cout << "Номер лабораторной работы: 2;" << endl;
cout << "ФИО: *** *** ***;" << endl;
cout << "Номер группы: ***-**;" << endl;
return 0;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question