Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- class pojazd{
- public:
- int il_pasazerow;
- string typ;
- pojazd();
- pojazd(int il);
- pojazd(int il,string ty);
- };
- pojazd::pojazd(){
- cout << "pojazd konstruktor 0 argumentowy" << endl;
- }
- pojazd::pojazd(int il){
- }
- pojazd::pojazd(int il,string ty){
- il_pasazerow=il;
- typ=ty;
- }
- class motocykl:public pojazd{
- public:
- int pojemnosc_silnika;
- int max_predkosc;
- motocykl();
- motocykl(int pojemnosc);
- motocykl(int pojemnosc,int max_);
- };
- motocykl::motocykl(){
- cout<< "motocykl konstruktor 0 argumentowy";
- pojemnosc_silnika=0;
- max_predkosc=0;
- }
- motocykl::motocykl(int pojemnosc){
- pojemnosc_silnika=pojemnosc;
- max_predkosc=0;
- }
- motocykl::motocykl(int pojemnosc,int max_){
- pojemnosc_silnika=pojemnosc;
- max_predkosc=max_;
- }
- class autobus:public pojazd{
- public:
- bool przewoz_dzieci;
- string kolor;
- autobus();
- autobus(bool przewoz);
- autobus(bool przewoz,string kolo);
- };
- autobus::autobus(){
- cout<< "autobus konstruktor 0 argumentowy" << endl;
- przewoz_dzieci=false;
- kolor="nie wiadomo";
- }
- autobus::autobus(bool przewoz){
- przewoz_dzieci=przewoz;
- kolor="nie wiadomo";
- }
- autobus::autobus(bool przewoz,string kolo){
- przewoz_dzieci=przewoz;
- kolor=kolo;
- }
- int main()
- {
- motocykl honda;
- motocykl wusk(10);
- motocykl yamaha(10,130);
- autobus autosan;
- autobus jelcz(true);
- autobus ikarus(false,"niebieski");
- cout << "honda " << "pojemnosc "<< honda.pojemnosc_silnika << " max predkosc " << honda.max_predkosc << endl << endl;
- cout << "wusk " << "pojemnosc "<< wusk.pojemnosc_silnika << " max predkosc " << wusk.max_predkosc << endl << endl;
- cout << "yamaha " << "pojemnosc "<< yamaha.pojemnosc_silnika << " max predkosc " << yamaha.max_predkosc << endl << endl;
- cout << "autosan " << "przewoz dzieci: "<< autosan.przewoz_dzieci << " kolor " << autosan.kolor<< endl << endl;
- cout << "jelcz " << "przewoz dzieci: "<< jelcz.przewoz_dzieci << " kolor " << jelcz.kolor<< endl << endl;
- cout << "ikarus " << "przewoz dzieci: "<< ikarus.przewoz_dzieci << " kolor " << ikarus.kolor<< endl << endl;
- cout << "Hello world!" << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement