/
monahov
/
learningcplusplus
Обзор
Документация
Войти
/
monahov
/
learningcplusplus
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Lesson 12.1.cpp
16 строк
262 B
monahov
upload files
31 авг 2025, 19:42
31 авг 2025, 19:42
5203224
Код
Авторство
О чём код?
#include <iostream> #include <fstream> #include <string> int main() { std::ifstream ifile("text.txt"); if (ifile.is_open()) { std::string word{}; while (ifile >> word) { std::cout << word << std::endl; } } return EXIT_SUCCESS; }