摘要:
任务三 pets.hpp #pragma once #include <iostream> #include <string> using namespace std; class MachinePets{ public: MachinePets(const string &m):nickname{ 阅读全文
摘要:
任务二 GradeCalc.hpp #include <iostream> #include <vector> #include <string> #include <algorithm> #include <numeric> #include <iomanip> using std::vector 阅读全文
摘要:
任务一 button.hpp #pragma once #include <iostream> #include <string> using std::string; using std::cout; // 按钮类 class Button { public: Button(const strin 阅读全文
摘要:
任务一: t.cpp // 类T: 实现 // 普通函数实现 #include "t.h" #include <iostream> #include <string> using std::cout; using std::endl; using std::string; // static成员数据 阅读全文
摘要:
任务1 #include <algorithm> #include <iostream> #include <string> #include <vector> using namespace std; // 声明 // 模板函数声明 template <typename T> void outpu 阅读全文