05 2019 档案
摘要:#include using namespace std; class Account { private: double balance; public: Account(double balance = 0) {balance=balance;} virtual double credit(double creFee = 0) { balanc...
阅读全文
摘要:第一关 通过尝试可知修改 id = 后的值能够改变hello的内容,下面的语句给了提示You are not the admin.不妨猜想如果使之出现admin即可过关。 Admin时,失败 不断尝试 过了第一关 第二关 由于出现了cookie不妨想到查看其cookie 由于查看cookie后发现g
阅读全文
摘要://Automobile.h #ifndef AUTOMOBILE_H #define AUTOMOBILE_H using namespace std; #include class Park; class Automobile { public: void enter(Park *park); string getName(); void leave(Park *p...
阅读全文
摘要:#include using namespace std; const int MAX_num_AIM = 3; const int MAX_num_TRAVELWAY = 2; const int MAX_num_LUGGAGENUMBER = 3; const int MAX_num_PASSENGER = 62; enum Aim {DomesticShort, DomesticLong...
阅读全文