fork download
  1. #include <iostream>
  2. #include <Windows.h>
  3. using namespace std;
  4.  
  5. int main(int argc, char* argv[])
  6. {
  7. SetConsoleCP(1251);// установка кодовой страницы win-cp 1251 в поток ввода
  8. SetConsoleOutputCP(1251); // установка кодовой страницы win-cp 1251 в поток вывода
  9.  
  10. char string[20];
  11. cin >> string; // вводим строку, используя Кириллицу
  12. cout << "\nвывод: "<< string << endl; // ввывод строки
  13. return 0;
  14. }
Compilation error #stdin compilation error #stdout 0s 16880KB
stdin
20 3
+Напиши+мне.++
++Привет!++
++++Пока+=)+
compilation info
prog.cpp:2:21: fatal error: Windows.h: No such file or directory
 #include <Windows.h>
                     ^
compilation terminated.
stdout
Standard output is empty