12 2025 档案

摘要:任务一 1 #pragma once 2 3 #include <string> 4 5 // 发行/出版物类:Publisher (抽象类) 6 class Publisher { 7 public: 8 Publisher(const std::string &name_ = ""); // 构 阅读全文
posted @ 2025-12-16 22:34 KXJSLL 阅读(15) 评论(1) 推荐(0)
摘要:任务一 1 #pragma once 2 3 #include <vector> 4 #include <array> 5 #include <string> 6 7 class GradeCalc { 8 public: 9 GradeCalc(const std::string &cname); 阅读全文
posted @ 2025-12-02 19:16 KXJSLL 阅读(9) 评论(1) 推荐(0)