摘要:
实验任务1:代码:publisher.hpp 查看代码 #pragma once #include <iostream> #include <string> using std::cout; using std::endl; using std::string; // 发行/出版物类:Publish 阅读全文
摘要:
实验任务1: (略) 实验任务2: 代码: GradeCalc.hpp 查看代码 #include <iostream> #include <vector> #include <string> #include <algorithm> #include <numeric> #include <iom 阅读全文
摘要:
实验任务1:代码: Button.hpp 查看代码 #pragma once #include <iostream> #include <string> using std::string; using std::cout; // 按钮类 class Button { public: Button( 阅读全文
摘要:
实验任务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 阅读全文
摘要:
实验任务1: 代码: 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 using namespace std; 7 template<typename T> 8 void 阅读全文