摘要: 1. 实验任务1 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 Butto 阅读全文
posted @ 2024-11-07 12:45 Sunria 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 1. 实验任务1 t.h源代码: 1 #pragma once 2 #include <string> 3 4 // 类T: 声明 5 class T { 6 public: 7 // 对象属性、方法 8 T(int x = 0, int y = 0); // 普通构造函数 9 T(const T& 阅读全文
posted @ 2024-10-25 23:03 Sunria 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 1. 实验任务1 task1源代码: 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 using namespace std; 7 8 // 声明 9 // 模板函数声明 阅读全文
posted @ 2024-10-10 22:14 Sunria 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 1. 实验任务1 【验证性实验】 2. 实验任务2 【验证性实验】 3. 实验任务3 【验证性实验】 4. 实验任务4 task4源代码: 1 #include<stdio.h> 2 #include<stdlib.h> 3 4 int main(){ 5 FILE *fp; 6 int t=0; 阅读全文
posted @ 2023-12-18 14:48 Sunria 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 1. 实验任务1 【验证性实验】 2. 实验任务2 【验证性实验】 3. 实验任务3 【验证性实验】 4. 实验任务4 task4源代码: 1 #include <stdio.h> 2 #include<stdlib.h> 3 #define N 10 4 5 typedef struct { 6 阅读全文
posted @ 2023-12-13 20:39 Sunria 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 1. 实验任务1 task1_1源代码: 1 #include <stdio.h> 2 #include<stdlib.h> 3 #define N 5 4 5 void input(int x[], int n); 6 void output(int x[], int n); 7 void fin 阅读全文
posted @ 2023-12-03 02:19 Sunria 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 1.实验任务1 task1_1源代码: 1 #include<stdio.h> 2 #include<stdlib.h> 3 #define N 4 4 5 void test1() { 6 int a[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组a占用的内存字节数 阅读全文
posted @ 2023-11-19 02:23 Sunria 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 1.实验任务1 task1源代码: 1 #include <stdlib.h> 2 #include <time.h> 3 #include <windows.h> 4 #define N 80 5 6 void print_text(int line, int col, char text[]); 阅读全文
posted @ 2023-10-31 15:30 Sunria 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 1.实验任务1 task1源代码: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 5 #define N 5 6 #define N1 374 7 #define N2 465 8 9 int main() 10 { 阅读全文
posted @ 2023-10-21 17:48 Sunria 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 1.实验任务1 task1_1源代码: 1 #include <stdio.h> 2 #include <stdlib.h> 3 int main() 4 { 5 printf(" 0 \n"); 6 printf("<H>\n"); 7 printf("I I\n"); 8 printf(" 0 阅读全文
posted @ 2023-10-05 19:38 Sunria 阅读(51) 评论(0) 推荐(0) 编辑