/
MorningKoffe
/
TechStorage
Обзор
Документация
Войти
/
MorningKoffe
/
TechStorage
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
TV.h
19 строк
472 B
Tsidik Vitaliy
init
06 июн 2026, 11:03
06 июн 2026, 11:03
6cdcdf7
Код
Авторство
О чём код?
#pragma once #include "Household.h" class TV : public Household { int screenInches_; string resolution_; bool isSmart_; public: TV(string name, string brand, double price, int stock, int power, int screen, string resolution, bool smart); string getName() const override; string getBrand() const override; double getPrice() const override; int getStock() const override; string getDetails() const override; };