Advertisement
programusy

zajonc cpp klasa przeciazenie

Mar 8th, 2023
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.46 KB | TV | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. class uczen{
  6. public:
  7.     string imie, nazwisko;
  8.     int klasa;
  9.  
  10.     uczen(string im, string nazw, int kl){
  11.         imie = im;
  12.         nazwisko = nazw;
  13.         klasa = kl;
  14.     }
  15. };
  16.  
  17. ostream &operator<<(ostream &out, uczen u){
  18.     out << u.nazwisko << " " << u.imie << ", uczen " << u.klasa << " kalsy";
  19.     return out;
  20. }
  21.  
  22. int main()
  23. {
  24.     uczen u1("Jan", "Kowalski", 3);
  25.  
  26.     cout << u1;
  27.     return 0;
  28. }
  29.  
Tags: cpp Kod zajonc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement