摘要: 实验六 实验任务4 task4.cpp #include <iostream> #include "vector.hpp" void test1() { using namespace std; int n; cout << "Enter n: "; cin >> n; Vector<double> 阅读全文
posted @ 2024-12-24 15:03 Sandy_007 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 实验2 类和对象_基础编程1 实验任务1 t.h #pragma once #include <string> // 类T: 声明 class T { // 对象属性、方法 public: T(int x = 0, int y = 0); // 普通构造函数 T(const T &t); // 复制 阅读全文
posted @ 2024-12-20 21:30 Sandy_007 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 实验5 继承和多态 实验任务3 task3.cpp #include <iostream> #include <vector> #include "pets.hpp" void test() { using namespace std; vector<MachinePets *> pets; pet 阅读全文
posted @ 2024-12-08 16:32 Sandy_007 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 实验4 类的组合、继承、模板类、标准库 实验任务1 :自行练习 实验任务2 GradeCalc.hpp #include <iostream> #include <vector> #include <string> #include <algorithm> #include <numeric> #i 阅读全文
posted @ 2024-11-25 15:02 Sandy_007 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 实验3 类和对象_基础编程2 实验任务1 button.hpp // button.hpp #pragma once #include <iostream> #include <string> using std::cout; using std::string; // 按钮类 class Butt 阅读全文
posted @ 2024-11-11 15:19 Sandy_007 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 实验任务1: task1.cpp 点击查看代码 // 现代C++标准库、算法库体验 // 本例用到以下内容: // 1. 字符串string, 动态数组容器类vector、迭代器 // 2. 算法库:反转元素次序、旋转元素 // 3. 函数模板、const引用作为形参 #include <iostr 阅读全文
posted @ 2024-10-14 22:17 Sandy_007 阅读(15) 评论(0) 推荐(0) 编辑