Advertisement
Guest User

Untitled

a guest
May 28th, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. void Film::print(ostream& where) const
  2. {
  3. where << "[" << this->nr << "] " << this->nazwa << " *Ocena* " << this->ocena << endl
  4. << "Producent: " << this->producent << endl << this->opis << endl
  5. << "Od lat: " << this->odIluLat << " Rok: " << this->rok << "\nDostepnych sztuk: " << this->iloscSztuk << " Cena: " << this->cena << "\nOceny:";
  6. for (int i = 0; i < 10; i++)
  7. {
  8. if (oceny[i].empty() == true)
  9. break;
  10. where << endl << this->oceny[i];
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement