Advertisement
MararOn

Untitled

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