- 317
- 673
так попробуй
C++:
#include <iostream>
#include <clocale>
int main()
{
setlocale(LC_ALL,"ru");
std::cout << "Привет\n";
system("pause");
return 0;
}