-
实验3 类和对象_基础编程2
试验任务1: button.hpp: #pragma once #include <iostream> #include <string> using std::string; using std::cout; // 按钮类 class Button { public: Button(const s -
实验三
任务一 代码 1 button.hpp 2 3 #pragma once 4 5 #include <iostream> 6 #include <string> 7 8 using std::string; 9 using std::cout; 10 11 // 按钮类 12 class Butto -
2024-2025-1 20241305 《计算机基础与程序设计》第七周学习总结
作业信息 这个作业属于哪个课程 2024-2025-1-计算机基础与程序设计(https://edu.cnblogs.com/campus/besti/2024-2025-1-CFAP) 这个作业要求在哪里 2024-2025-1计算机基础与程序设计第七周作业 这个作业的目标 1、数组与链表2、基于 -
数据采集第三次实践作业
这个作业属于哪个课程 <首页 - 2024数据采集与融合技术实践 - 福州大学 - 班级博客 - 博客园 (cnblogs.com)> 这个作业要求在哪里 <作业3 - 作业 - 2024数据采集与融合技术实践 - 班级博客 - 博客园 (cnblogs.com)> 学号 <102202101> 一 -
高级语言程序设计第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 学号:102400201 姓名:陈林祺 1 2 问题:字符串输 -
实验3 类和对象_基础编程2
实验任务1 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 public: 12 -
2024-2025-1 20241407《计算机基础与程序设计》第七周学习总结
这个作业属于哪个课程 [2024-2025-1 计算机基础与程序设计](https://edu.cnblogs.com/campus/besti/2024-2025-1-CFAP) 这个作业要求在哪里 2024-2025-1计算机基础与程序设计第七周作业 这个作业的目标 学习数组与链表,基于数组和基 -
高级语言程序设计课程第六次个人作业
2024高级语言程序设计:https://edu.cnblogs.com/campus/fzu/2024C 高级语言程序设计课程第六次个人作业:https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 学号:102400226 姓名:石华波 // -
20222311 2024-2025-1 《网络与系统攻防技术》实验四实验报告
1. 实验内容 1.1恶意代码文件类型标识、脱壳与字符串提取 对提供的rada恶意代码样本,进行文件类型识别,脱壳与字符串提取,以获得rada恶意代码的编写作者,具体操作如下: (1)使用文件格式和类型识别工具,给出rada恶意代码样本的文件格式、运行平台和加壳工具; (2)使用超级巡警脱壳机等脱壳 -
实验4
任务1: 源代码 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 printf("sizeof(x) = %d\n",sizeof(x)); 9 -
高级语言程序设计第六次个人作业
作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C/ 作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 学号:102400101 姓名:程黄姗 1:会漏掉用&来取指针的值 -
团队作业4——项目冲刺集合贴
软件工程 班级链接 作业要求 作业要求 作业目标 项目冲刺 github仓库 团队项目 团队成员 姓名 学号 王睿娴 3222003968 张颢严 3222004426 梁恬(组长) 3222004467 潘思言 3222004423 Scrum 冲刺博客汇总链接 第一篇(11.11) 第二篇(11 -
实验4
实验任务1 源代码: 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 printf("sizeof(x) = %d\n", sizeof(x -
实验三 类和对象_基础编程2
实验任务 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 -
《计算机基础与程序设计》第七周学习总结
如2024-2025-7) 20241404 《计算机基础与程序设计》第七周学习总结 作业信息 这个作业属于哪个课程 https://edu.cnblogs.com/campus/besti/2024-2025-1-CFAP 这个作业要求在哪里 https://www.cnblogs.com/roc -
实验4
task1: 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("sizeof( -
实验3
task1 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 public: 12 -
实验4
任务一 源代码 #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 -
实验4
任务1: 源代码: 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("size -
实验3 类和对象
实验任务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