Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // po_dziedziczenie.cpp : Defines the entry point for the console application.
- //
- #include "stdafx.h"
- #include <iostream>
- #include <string>
- #include <conio.h>
- #include <string.h>
- #include <conio.h>
- using namespace std;
- class Samochod abstract
- {
- protected:
- string model;
- string marka;
- int rok_produkcji;
- public:
- Samochod(): model("model")
- {
- marka = "marka";
- rok_produkcji = 1970;
- }
- void Display()
- {
- cout << model << endl << marka << endl << rok_produkcji << endl;
- }
- };
- class Pojazd : public Samochod
- {
- public:
- char typ_nadwozia[];
- void Marka(string m )
- {
- this->marka = m;
- }
- };
- int main()
- {
- Pojazd autko;
- autko.Marka("fiat");
- autko.Display();
- _getch();
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement