Advertisement
Dawid_PAr

fun

Aug 23rd, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. Sprzedawca dodajS()
  2. {
  3. fstream zapisz;
  4. string temp;
  5. Sprzedawca s;
  6. zapisz.open("sprzedawca.txt", fstream::in | fstream::out | fstream::app);
  7. cout << "IMIE: ";
  8. cin >> s.man1.imie;
  9. zapisz << s.man1.imie << endl;
  10. cout << "WIEK: ";
  11. cin >> s.man1.wiek;
  12. zapisz << s.man1.wiek << endl;
  13. cout << "NAJWIEKSZY KONTRAKT: ";
  14. cin >> s.hDeal;
  15. zapisz << s.hDeal << endl;
  16. cout << "MOTTO: ";
  17. getline(cin, s.motto); // POMIJA TEN FRAGMENT
  18. zapisz << s.motto << endl;
  19. zapisz.seekp(0);
  20. zapisz.clear();
  21. zapisz.close();
  22. return s;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement