Advertisement
Dawid_PAr

Untitled

Aug 23rd, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include <fstream>
  4. #include <sstream>
  5.  
  6. using namespace std;
  7.  
  8. struct Pracownik
  9. {
  10. int wiek;
  11. string imie;
  12. };
  13.  
  14. struct Kierowca
  15. {
  16. string prawoJ;
  17. string car;
  18. Pracownik man;
  19. };
  20.  
  21. struct Sprzedawca
  22. {
  23. int hDeal;
  24. string motto;
  25. Pracownik man1;
  26. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement