/
MorningKoffe
/
VendingMachineLogic
Обзор
Документация
Войти
/
MorningKoffe
/
VendingMachineLogic
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
VendingMachine/Drink.cpp
17 строк
441 B
Tsidik Vitaliy
init
04 июн 2026, 18:56
04 июн 2026, 18:56
e194e16
Код
Авторство
О чём код?
#include "Drink.h" #include <iostream> #include <sstream> Drink::Drink(const string& name, double calories, double volume) : Product(name, calories),drink_volume_(volume) {} double Drink::get_volume() const { return drink_volume_; } void Drink::showInfo() const { ostringstream builder; cout << " " << this->get_name() << " " << this->get_volume() << " ml, " << this->get_calories() << " kcal"<< "\n"; }