您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
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. }