摘要: 实验任务4:代码: Vector.hpp 查看代码 #pragma once #include <iostream> #include <stdexcept> using namespace std; template <typename T> class Vector { public: Vect 阅读全文
posted @ 2024-12-17 16:49 夏日华 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 实验任务1:代码:publisher.hpp 查看代码 #pragma once #include <iostream> #include <string> using std::cout; using std::endl; using std::string; // 发行/出版物类:Publish 阅读全文
posted @ 2024-12-08 15:23 夏日华 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 实验任务1: (略) 实验任务2: 代码: GradeCalc.hpp 查看代码 #include <iostream> #include <vector> #include <string> #include <algorithm> #include <numeric> #include <iom 阅读全文
posted @ 2024-11-18 17:08 夏日华 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 实验任务1:代码: Button.hpp 查看代码 #pragma once #include <iostream> #include <string> using std::string; using std::cout; // 按钮类 class Button { public: Button( 阅读全文
posted @ 2024-11-10 22:52 夏日华 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 实验任务1: 代码: t.h 查看代码 #pragma once #include <string> class T { public: T(int x = 0, int y = 0); T(const T &t); T(T &&t); ~T(); void adjust(int ratio); v 阅读全文
posted @ 2024-10-28 20:06 夏日华 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 实验任务1: 代码: 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 using namespace std; 7 template<typename T> 8 void 阅读全文
posted @ 2024-10-13 11:20 夏日华 阅读(5) 评论(0) 推荐(0) 编辑