摘要: 任务一 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 阅读(3) 评论(0) 推荐(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 阅读(7) 评论(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 阅读(10) 评论(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 阅读(24) 评论(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 阅读(13) 评论(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 阅读(21) 评论(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 阅读(9) 评论(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 阅读(12) 评论(1) 推荐(0)
摘要: #include<stdio.h> char score_to_grade(int score); int main() { int score; char grade; while(scanf("%d",&score)!=EOF) { grade=score_to_grade(score); pr 阅读全文
posted @ 2024-10-26 17:22 毛天佑202483290413 阅读(36) 评论(0) 推荐(0)
摘要: 源代码 #include #include #include #define N 5 #define N1 397 #define N2 476 #define N3 21 int main() { int cnt; int random_major, random_no; srand(time(N 阅读全文
posted @ 2024-10-10 15:36 毛天佑202483290413 阅读(28) 评论(1) 推荐(0)