Advertisement
Guest User

Untitled

a guest
Dec 5th, 2018
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. boolean seeAlso(ksiazka* books) {
  2.     int bookIndex;
  3.     int seeAlsoBookIndex
  4.  
  5.     cout << "Podaj indeks książki do której dodać książkę";
  6.     cin >> bookIndex;
  7.  
  8.     cout << "Podaj indeks książki którą dodać";
  9.     cin >> seeAlsoBookIndex;
  10.  
  11.     books[bookIndex].seeAlso = books[seeAlsoBookIndex];
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement