/
lyapdy
/
Object_oriented_programming_cpp_318
Обзор
Документация
Войти
/
lyapdy
/
Object_oriented_programming_cpp_318
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lab7/task_2.h
27 строк
649 B
danillyapunov
tasks 7 and 8 added
30 ноя 2025, 14:31
30 ноя 2025, 14:31
5a9b53a
Код
Авторство
О чём код?
//#ifndef TASK_2_H //#define TASK_2_H // int task_2(); //#endif // TASK_2_H #ifndef TASK_2_H #define TASK_2_H #include <string> int task_2(); //// Структура для хранения адреса //struct Address { // std::string Country; // Страна // std::string City; // Город // std::string Street; // Улица // std::string House; // Дом //}; //// Функции для работы с адресами //void Parse(const std::string& line, Address* const address); //void Unify(Address* const address); //std::string Format(const Address& address); #endif // TASK_2_H