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