Advertisement
Mihao

PO_DZIEDZICZENIE_AŁTKO

May 10th, 2016
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.74 KB | None | 0 0
  1. // po_dziedziczenie.cpp : Defines the entry point for the console application.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include <iostream>
  6. #include <string>
  7. #include <conio.h>
  8. #include <string.h>
  9. #include <conio.h>
  10.  
  11. using namespace std;
  12. class Samochod abstract
  13. {
  14. protected:
  15.     string model;
  16.     string marka;
  17.     int rok_produkcji;
  18. public:
  19.     Samochod(): model("model")
  20.     {
  21.         marka = "marka";
  22.         rok_produkcji = 1970;
  23.     }
  24.  
  25.  
  26.     void Display()
  27.     {
  28.         cout << model << endl << marka << endl << rok_produkcji << endl;
  29.     }
  30.  
  31. };
  32.  
  33. class Pojazd : public Samochod
  34. {
  35. public:
  36.     char typ_nadwozia[];
  37.  
  38.     void Marka(string m )
  39.     {
  40.         this->marka = m;
  41.     }
  42. };
  43.  
  44.  
  45. int main()
  46. {
  47.     Pojazd autko;
  48.     autko.Marka("fiat");
  49.     autko.Display();
  50.     _getch();
  51.    
  52.     return 0;
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement