摘要: 实验任务四: Vector.hpp #ifndef VECTOR_HPP #define VECTOR_HPP #include <iostream> #include <memory> #include <stdexcept> template <typename T> class Vector 阅读全文
posted @ 2024-12-24 00:54 huashu2 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 实验任务3: pets.hpp #pragma once #include <iostream> #include <string> using namespace std; class MachinePets { public: MachinePets(const string &s) : nic 阅读全文
posted @ 2024-12-07 15:15 huashu2 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 实验2 GradeCalc.hpp: #include <algorithm> #include <iomanip> #include <iostream> #include <numeric> #include <string> #include <vector> using std::cin; 阅读全文
posted @ 2024-11-24 19:27 huashu2 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 实验一 botton.hpp #pragma once #include<iostream> #include<string> using std::string; using std::cout; class Button{ public: Button(const string &text); 阅读全文
posted @ 2024-11-10 15:30 huashu2 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 实验任务一: 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); void displ 阅读全文
posted @ 2024-10-27 19:30 huashu2 阅读(11) 评论(0) 推荐(0) 编辑
摘要: task 1 实验代码: #include<iostream> #include<string> #include<vector> #include<algorithm> using namespace std; //声明 //模板函数声明 template <typename T> void ou 阅读全文
posted @ 2024-10-12 17:44 huashu2 阅读(9) 评论(0) 推荐(0) 编辑