摘要: task4 1 #pragma once 2 3 #include<iostream> 4 #include<stdexcept> 5 6 using namespace std; 7 template<typename T> 8 class Vector { 9 public: 10 Vector 阅读全文
posted @ 2024-12-16 15:59 _mao 阅读(6) 评论(0) 推荐(0) 编辑
摘要: task3: 1 #pragma 2 3 #include<iostream> 4 #include<string> 5 6 using namespace std; 7 8 class MachinePets{ 9 public: 10 MachinePets(const string &s="" 阅读全文
posted @ 2024-12-02 22:36 _mao 阅读(11) 评论(0) 推荐(0) 编辑
摘要: task2 1 #include <iostream> 2 #include <vector> 3 #include <string> 4 #include <algorithm> 5 #include <numeric> 6 #include <iomanip> 7 8 using std::ve 阅读全文
posted @ 2024-11-23 22:59 _mao 阅读(11) 评论(0) 推荐(0) 编辑
摘要: task1 1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 using std::string; 7 using std::cout; 8 9 // 按钮类 10 class Button { 11 public: 12 阅读全文
posted @ 2024-11-08 17:13 _mao 阅读(9) 评论(0) 推荐(0) 编辑
摘要: task1 1 #pragma once 2 3 #include <string> 4 5 // 类T: 声明 6 class T { 7 // 对象属性、方法 8 public: 9 T(int x = 0, int y = 0); // 普通构造函数 10 T(const T &t); // 阅读全文
posted @ 2024-10-23 20:06 _mao 阅读(16) 评论(0) 推荐(1) 编辑
摘要: 任务1: 源代码task1.cpp 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 using namespace std; 7 8 // 声明 9 // 模板函数声明 阅读全文
posted @ 2024-10-09 21:39 _mao 阅读(26) 评论(0) 推荐(1) 编辑