Advertisement
Guest User

main

a guest
Feb 24th, 2020
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include <iostream>
  2. #include "bib_osoby.h"
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. Osoba Kuba("Kuba","Zolynski",200,"87584143759");
  9. Kuba.zmienWzrost(180);
  10. Kuba.zmienNazwisko("Zolyn");
  11. Kuba.wypisz();
  12. cout<<Kuba.plec();
  13.  
  14. return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement