Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. //Vetal code
  2.    
  3.     //Введи свой путь
  4.     std::string path = "/Users/vitaly/Desktop/test.bin";
  5.    
  6.     Stadion stadion1("Vetal", "Sport", 1234, 12, 12);
  7.     stadion1.printStadion();
  8.     stadion1.save(path);
  9.    
  10.     Stadion stadion2;
  11.     stadion2.load(path);
  12.     stadion2.printStadion();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement