Advertisement
programusy

Untitled

Feb 9th, 2023
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. class pojazd
  6. {
  7. public:
  8. string typ;
  9. int ilosc_p;
  10. pojazd(string t,int p) : typ(t), ilosc_p(p) {}
  11.  
  12. };
  13.  
  14. class motocykl : public pojazd
  15. {
  16. private:
  17. int pojemnosc;
  18. int predkosc;
  19. public:
  20. motocykl(string t,int p, int s, int m) : pojazd(t,p), pojemnosc(s),predkosc(m) {}
  21.  
  22. void wypisz()
  23. {
  24. cout << "Typ: " << typ << " Ilosc: " << ilosc_p << " Pojemnosc: " << pojemnosc << " Predkosc: " << predkosc << endl;
  25. }
  26.  
  27. };
  28.  
  29. class autobus : public pojazd
  30. {
  31. private:
  32. string przewoz;
  33. string kolor;
  34. public:
  35. autobus(string t,int p, int p, int k) : pojazd(t,p), przewoz(p),kolor(k) {}
  36.  
  37. void wypisz()
  38. {
  39. cout << "Typ: " << typ << " Ilosc: " << ilosc_p << " Pojemnosc: " << przewoz << " Predkosc: " << kolor << endl;
  40. }
  41.  
  42. };
  43. /*
  44. class autobus :: public pojazd()
  45. {
  46. private:
  47. string przewoz;
  48. string kolor;
  49. };
  50. */
  51. int main()
  52. {
  53. motocykl yamaha("yamaha",1,10,100);
  54. yamaha.wypisz();
  55. motocykl honda("honda",1,11,110);
  56. honda.wypisz();
  57. motocykl wsk("wsk",1,12,120);
  58. wsk.wypisz();
  59. jelcz("jelcz",50,50,80);
  60. autobus.wypisz();
  61. cout << "Hello world!" << endl;
  62. return 0;
  63. }
  64.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement