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

15 行
201 B

  1. #ifndef FLAG_HACKTHEGAME_HPP
  2. #define FLAG_HACKTHEGAME_HPP
  3. #include <string>
  4. class Flag
  5. {
  6. private:
  7. static std::string flag;
  8. static bool Load();
  9. public:
  10. static void Print();
  11. };
  12. #endif