摘要: 实验任务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 Button { 11 阅读全文
posted @ 2024-11-08 16:54 张朦丹 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 实验任务1 task1.c 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf(" 阅读全文
posted @ 2024-11-08 10:39 张朦丹 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 实验任务一 t.h 1 // 类T: 声明 2 class T { 3 // 对象属性、方法 4 public: 5 T(int x = 0, int y = 0); // 普通构造函数 6 T(const T &t); // 复制构造函数 7 T(T &&t); // 移动构造函数 8 ~T(); 阅读全文
posted @ 2024-10-28 23:14 张朦丹 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 实验任务1 task1.c 1 #include <stdio.h> 2 3 char score_to_grade(int score); // 函数声明 4 5 int main() { 6 int score; 7 char grade; 8 9 while(scanf("%d", &scor 阅读全文
posted @ 2024-10-26 20:04 张朦丹 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 实验任务一 task1.cpp 1 // 现代C++标准库、算法库体验 2 // 本例用到以下内容: 3 // 1. 字符串string, 动态数组容器类vector、迭代器 4 // 2. 算法库:反转元素次序、旋转元素 5 // 3. 函数模板、const引用作为形参 6 #include <i 阅读全文
posted @ 2024-10-13 22:02 张朦丹 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 实验任务1 task1.c 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 5 #define N 5 6 #define N1 397 7 #define N2 476 8 #define N3 21 9 10 in 阅读全文
posted @ 2024-10-13 12:40 张朦丹 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 一、实验结论 任务一 task1_1.c // 打印一个字符小人 #include <stdio.h> int main() { printf(" O \n"); printf("<H>\n"); printf("I I\n"); printf(" O \n"); printf("<H>\n"); 阅读全文
posted @ 2024-09-25 23:08 张朦丹 阅读(15) 评论(0) 推荐(0) 编辑