/
DaniilKvasnikov
/
NetologyHomework001
Обзор
Документация
Войти
/
DaniilKvasnikov
/
NetologyHomework001
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
task_2.cpp
14 строк
358 B
DANIIL_HOMEPC\123yk
File utf-8 with boom and fix input and output with russian symbol
03 май 2025, 00:12
03 май 2025, 00:12
e79eab8
Код
Авторство
О чём код?
#include <iostream> #include <string> #include <windows.h> int main() { SetConsoleCP(1251); SetConsoleOutputCP(1251); std::string word; std::cout << "Введите слово:" << std::endl; std::getline(std::cin >> std::ws, word); std::cout << "Вы ввели:" << std::endl; std::cout << word << std::endl; return 0; }