摘要: 任务一 contestant.hpp #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // 姓名 st 阅读全文
posted @ 2025-12-22 19:42 毛天佑202483290413 阅读(5) 评论(1) 推荐(0)
摘要: publisher.hpp #pragma once #include <string> // 发行/出版物类:Publisher (抽象类) class Publisher { public: Publisher(const std::string &name_ = ""); // 构造函数 vi 阅读全文
posted @ 2025-12-10 21:09 毛天佑202483290413 阅读(11) 评论(1) 推荐(0)
摘要: 任务一 GradeCalc.hpp #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string &cname); voi 阅读全文
posted @ 2025-12-02 19:39 毛天佑202483290413 阅读(5) 评论(1) 推荐(0)
摘要: 任务一 button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::string& get_lab 阅读全文
posted @ 2025-11-25 20:36 毛天佑202483290413 阅读(8) 评论(1) 推荐(0)
摘要: 任务一 源代码 T.h #pragma once #include <string> // 类T: 声明 class T { // 对象属性、方法 public: T(int x = 0, int y = 0); // 普通构造函数 T(const T& t); // 复制构造函数 T(T&& t) 阅读全文
posted @ 2025-10-25 23:25 毛天佑202483290413 阅读(13) 评论(1) 推荐(0)
摘要: 任务1 源代码 #include<iostream> #include<string> #include<vector> #include<algorithm> template<typename T> void output(const T& c); void test1(); void test 阅读全文
posted @ 2025-10-15 11:32 毛天佑202483290413 阅读(26) 评论(2) 推荐(0)
摘要: 1 源代码 #include <stdio.h> #define N 80 #define M 100 typedef struct { char name[N]; // 书名 char author[N]; // 作者 } Book; void write(); void read(); int 阅读全文
posted @ 2024-12-28 19:25 毛天佑202483290413 阅读(17) 评论(0) 推荐(0)
摘要: 1 源代码 #include<stdio.h> #include<string.h> #define N 3 typedef struct student { int id; // 学号 char name[20]; // 姓名 char subject[20]; // 考试科目 double pe 阅读全文
posted @ 2024-12-21 17:19 毛天佑202483290413 阅读(25) 评论(0) 推荐(0)
摘要: 1 源代码 #include<stdio.h> #define N 5 void input(int x[], int n); void output(int x[], int n); void find_min_max(int x[], int n, int *pmin, int *pmax); 阅读全文
posted @ 2024-12-08 13:37 毛天佑202483290413 阅读(15) 评论(0) 推荐(0)
摘要: 1 源代码 #include<stdio.h> #define N 4 #define M 2 void test1() { int x[N]={1,9,8,4}; int i; printf("sizeof(x)=%d\n",sizeof(x)); for(i=0;i<N;++i); printf 阅读全文
posted @ 2024-11-05 17:24 毛天佑202483290413 阅读(15) 评论(1) 推荐(0)