摘要: #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_VOLUNTEERS 100 #define MAX_PROJECTS 50 typedef 阅读全文
posted @ 2024-12-25 15:39 张欣颜 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 任务一 Complex.hpp #pragma once #include <iostream> #include <stdexcept> // 声明 //////////////////////////////////////////////////// // 复数模板类声明 template<t 阅读全文
posted @ 2024-12-20 11:18 张欣颜 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 任务一 publisher.hpp 1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 using std::cout; 7 using std::endl; 8 using std::string; 9 10 // 发行/出 阅读全文
posted @ 2024-12-07 13:26 张欣颜 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 任务一 task1_1.cpp 1 #include <iostream> 2 3 using std::cout; 4 using std::endl; 5 6 // 类A的定义 7 class A { 8 public: 9 A(int x0, int y0); 10 void display( 阅读全文
posted @ 2024-11-24 13:08 张欣颜 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 任务一 实验代码 button.hpp 1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 using std::string; 7 using std::cout; 8 9 // 按钮类 10 class Button { 阅读全文
posted @ 2024-11-09 19:50 张欣颜 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 任务一: 1 t.h 2 #pragma once 3 4 #include <string> 5 6 // 类T: 声明 7 class T { 8 // 对象属性、方法 9 public: 10 T(int x = 0, int y = 0); // 普通构造函数 11 T(const T &t 阅读全文
posted @ 2024-10-24 22:54 张欣颜 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 实验1 代码: 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 using namespace std; 7 8 // 声明 9 // 模板函数声明 10 templat 阅读全文
posted @ 2024-10-15 21:01 张欣颜 阅读(5) 评论(0) 推荐(0) 编辑