Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

18 rindas
282 B

  1. #include <string>
  2. #include <vector>
  3. #include <iostream>
  4. #include <json/json.h>
  5. #include "VehicleManager.cpp"
  6. using namespace std;
  7. int main()
  8. {
  9. Vehicle test = Vehicle(10, 5, 0);
  10. if (test.bookSeat(3, 4, 10))
  11. {
  12. cout << "Booking success" << endl;
  13. }
  14. test.printMap(10);
  15. }