2019年5月19日
摘要: 1. #ifndef BATTERY_H #define BATTERY_H class Battery { public: Battery(int batterySize0 = 70); int showBattery(); private: int batterySize; }; #endif 阅读全文
posted @ 2019-05-19 19:56 TOKISOKI 阅读(112) 评论(0) 推荐(0) 编辑