Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <cstdlib>
- #include <iostream>
- using namespace std;
- class budynek
- {
- private:
- string osoby;
- string pietro;
- string metry;
- public:
- void wprowadz();
- void wyswietl();
- };
- class blok:budynek
- {
- private:
- string wind;
- public:
- void wprowadz();
- void wyswietl();
- };
- class dom_jednorodzinny:budynek
- {
- private:
- string wlasciciel;
- public:
- void wprowadz();
- void wyswietl();
- };
- int main(int argc, char *argv[])
- {
- budynek b1;
- blok bl1;
- dom_jednorodzinny dj1;
- b1.wprowadz();
- b1.wyswietl();
- bl1.wprowadz();
- bl1.wyswietl();
- dj1.wprowadz();
- dj1.wyswietl();
- system("PAUSE");
- return EXIT_SUCCESS;
- }
- void budynek::wprowadz()
- {
- cout << "Wprowadz osoby pietro metry" << endl;
- cin >> osoby >> pietro >> metry;
- }
- void budynek::wyswietl()
- {
- cout<< "Dane" <<endl;
- cout << osoby << " "<<metry<<" "<<pietro<<endl;
- }
- void blok::wprowadz()
- {
- budynek::wprowadz();
- cout << "Wprowadz wind" << endl;
- cin >> wind;
- }
- void blok::wyswietl()
- {
- budynek::wyswietl();
- cout << " "<<wind<<endl;
- }
- void dom_jednorodzinny::wprowadz()
- {
- budynek::wprowadz();
- cout << "Wprowadz wlasciciela" << endl;
- cin >> wlasciciel;
- }
- void dom_jednorodzinny::wyswietl()
- {
- budynek::wyswietl();
- cout << " "<<wlasciciel<<endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement