Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- class osoba
- {
- private:
- string pseudonim;
- public:
- string imie;
- string nazwisko;
- void podaj_pseudo();
- void wyswietl_pseudo();
- friend void podaj_pseudonim(osoba &);
- };
- void osoba::podaj_pseudo()
- {
- cout<<"Podaj pseudonim: "<<endl;
- cin>>pseudonim;
- }
- void osoba::wyswietl_pseudo()
- {
- cout<<"Pseudonim: "<< pseudonim <<endl;
- }
- int main()
- {
- osoba uczen1;
- uczen1.nazwisko = "kowalski";
- uczen1.imie = "Jan";
- uczen1.podaj_pseudo();
- uczen1.wyswietl_pseudo();
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement