Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- class pojazd
- {
- public:
- string typ;
- int ilosc_p;
- pojazd(string t,int p) : typ(t), ilosc_p(p) {}
- };
- class motocykl : public pojazd
- {
- private:
- int pojemnosc;
- int predkosc;
- public:
- motocykl(string t,int p, int s, int m) : pojazd(t,p), pojemnosc(s),predkosc(m) {}
- void wypisz()
- {
- cout << "Typ: " << typ << " Ilosc: " << ilosc_p << " Pojemnosc: " << pojemnosc << " Predkosc: " << predkosc << endl;
- }
- };
- class autobus : public pojazd
- {
- private:
- string przewoz;
- string kolor;
- public:
- autobus(string t,int p, int p, int k) : pojazd(t,p), przewoz(p),kolor(k) {}
- void wypisz()
- {
- cout << "Typ: " << typ << " Ilosc: " << ilosc_p << " Pojemnosc: " << przewoz << " Predkosc: " << kolor << endl;
- }
- };
- /*
- class autobus :: public pojazd()
- {
- private:
- string przewoz;
- string kolor;
- };
- */
- int main()
- {
- motocykl yamaha("yamaha",1,10,100);
- yamaha.wypisz();
- motocykl honda("honda",1,11,110);
- honda.wypisz();
- motocykl wsk("wsk",1,12,120);
- wsk.wypisz();
- jelcz("jelcz",50,50,80);
- autobus.wypisz();
- cout << "Hello world!" << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement