Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.37 KB | None | 0 0
  1. class Towar
  2. {
  3. public:
  4.     float cena;
  5. };
  6.  
  7. class Fotel : public Towar
  8. {
  9.     float nazwa;
  10. };
  11.  
  12. class Koszyk
  13. {
  14.     int DodajDoKoszyka(float ile, float cena)
  15.     {
  16.         float koszt;
  17.         cout << "Ile chcesz dodac tych elementow?" << endl;
  18.         cin >> ile;
  19.         koszt = ile * cena;
  20.         return koszt;
  21.     }
  22.  
  23.     int WartoscTowaru()
  24.     {
  25.  
  26.     }
  27. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement