Files
ZUT-notatki/uczelnia/2_semestr/programowanie/laby/lab3/zad6.cpp
2026-03-17 16:46:05 +01:00

22 lines
406 B
C++

#include <iostream>
#include <string>
class Produkt {
std::string nazwa;
float cena;
public:
void ustawNazwe(std::string nazwa) { this->nazwa = nazwa; }
void ustawCene(float cena) { this->cena = cena; }
void pokaz() {
std::cout << "Produkt " << nazwa << " kosztuje " << cena << " zł.";
}
};
int main() {
Produkt p;
p.ustawNazwe("Marchewka");
p.ustawCene(234.342);
p.pokaz();
}