Zaktualizuj 'indywidualny'
This commit is contained in:
parent
a9da63e643
commit
52d53eda0a
27
indywidualny
27
indywidualny
@ -8,40 +8,18 @@
|
||||
|
||||
using namespace std;
|
||||
|
||||
/*class data {
|
||||
private:
|
||||
int dzien;
|
||||
int miesiac ;
|
||||
int rok;
|
||||
|
||||
public:
|
||||
data (int dzien, int miesiac, int rok) {
|
||||
this->dzien = dzien;
|
||||
this->miesiac = miesiac;
|
||||
this->rok = rok;
|
||||
}
|
||||
data () {
|
||||
this->dzien =0;
|
||||
this->miesiac = 0;
|
||||
this-> rok =0;
|
||||
}
|
||||
void WypiszDate ();
|
||||
};*/
|
||||
|
||||
class produkt {
|
||||
private:
|
||||
int id;
|
||||
string nazwa;
|
||||
float cena;
|
||||
int ilosc;
|
||||
//data dat;
|
||||
public:
|
||||
produkt (int id, string nazwa, float cena, int ilosc) {
|
||||
this->id = id;
|
||||
this->nazwa = nazwa;
|
||||
this->cena = cena;
|
||||
this->ilosc = ilosc;
|
||||
// this->dat = dat;
|
||||
}
|
||||
|
||||
int getId(){
|
||||
@ -69,10 +47,6 @@ public:
|
||||
void Kup();
|
||||
};
|
||||
|
||||
/*void data::WypiszDate() {
|
||||
cout << "data: " << dzien << "-"<< miesiac<<"-"<<rok<< endl;
|
||||
};*/
|
||||
|
||||
void produkt::WypiszInformacje() {
|
||||
cout << "nazwa produktu: " << nazwa << endl;
|
||||
cout << "cena: " << cena << endl;
|
||||
@ -87,7 +61,6 @@ void produkt::Kup() {
|
||||
|
||||
int main()
|
||||
{
|
||||
//data d1 = new data (11, 12, 2021);
|
||||
produkt *p1 = new produkt(1, "KIT KAT",2.5, 2);
|
||||
produkt *p2 = new produkt(2, "MARS", 2, 10 );
|
||||
produkt *p3 = new produkt(3, "BOUNTY", 3, 3);
|
||||
|
Loading…
Reference in New Issue
Block a user