Advertisement
MararOn

Untitled

Jan 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. class Ksiazka {
  4. private:
  5.   int cena;
  6.   int rozmiar;
  7.   std::string tytul;
  8.  
  9. public:
  10.   Ksiazka() {
  11.     cena = 0;
  12.     rozmiar = 0;
  13.     tytul = "";
  14.   }
  15. };
  16.  
  17. int main() {
  18.   Ksiazka a = 5;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement