Advertisement
programusy

funkcjazap_igorus_dla

Feb 8th, 2023
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5.  
  6. class osoba
  7. {
  8. private:
  9. string pseudonim;
  10. public:
  11. string imie;
  12. string nazwisko;
  13. void podaj_pseudo();
  14. void wyswietl_pseudo();
  15. friend void podaj_pseudonim(osoba &);
  16. };
  17.  
  18. void osoba::podaj_pseudo()
  19. {
  20. cout<<"Podaj pseudonim: "<<endl;
  21. cin>>pseudonim;
  22. }
  23.  
  24. void osoba::wyswietl_pseudo()
  25. {
  26. cout<<"Pseudonim: "<< pseudonim <<endl;
  27. }
  28.  
  29. int main()
  30. {
  31. osoba uczen1;
  32.  
  33. uczen1.nazwisko = "kowalski";
  34. uczen1.imie = "Jan";
  35. uczen1.podaj_pseudo();
  36. uczen1.wyswietl_pseudo();
  37.  
  38.  
  39. return 0;
  40. }
  41.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement