摘要: 实验四 任务一: 代码部分: GradeCalc.hpp: #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string 阅读全文
posted @ 2025-12-03 05:39 栖月水生 阅读(5) 评论(0) 推荐(0)
摘要: 任务一: 代码部分: button.hpp: #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::string& 阅读全文
posted @ 2025-11-26 05:46 栖月水生 阅读(5) 评论(1) 推荐(0)
摘要: 实验内容: 任务一: 代码部分: T.h: #pragma once #include <string> // 类T: 声明 class T { // 对象属性、方法 public: T(int x = 0, int y = 0); // 普通构造函数 T(const T &t); // 复制构造函 阅读全文
posted @ 2025-10-29 05:15 栖月水生 阅读(9) 评论(1) 推荐(0)
摘要: 任务一: 代码部分: // 现代C++标准库、算法库体验 // 本例用到以下内容: // 1. 字符串string, 动态数组容器类vector、迭代器 // 2. 算法库:反转元素次序、旋转元素 // 3. 函数模板、const引用作为形参 #include <iostream> #include 阅读全文
posted @ 2025-10-18 02:38 栖月水生 阅读(21) 评论(1) 推荐(0)