-
实验4
#include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) = %d\n", sizeof(x)); // 输 -
实验四
任务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(" -
实验三
task1: button.hpp: 点击查看代码 #pragma once #include <iostream> #include <string> using std::string; using std::cout; // 按钮类 class Button { public: Button( -
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 10 printf("sizeof(x) = %d\n", sizeof( -
2024-2025-1 学号20241306 《计算机基础与程序设计》第7周学习总结
2024-2025-1 学号20241306 《计算机基础与程序设计》第7周学习总结 作业信息 这个作业属于哪个课程 <班级的链接>2024-2025-1-计算机基础与程序设计 这个作业要求在哪里 <作业要求的链接>(如2024-2025-1计算机基础与程序设计第一周作业) 这个作业的目标 了解学习 -
20222322 2024-2025-1 《网络与系统攻防技术》实验四实验报告
1.实验内容 1.1 实验要求 一、恶意代码样本分析 文件类型识别:使用工具(如PEID、file等)识别恶意代码样本的文件类型,了解其文件类型。 脱壳处理:若恶意代码被加壳,使用对应的脱壳工具(如VM Unpacker)进行脱壳处理,以获取原始的、未加壳的代码。 字符串提取:使用字符串提取工具(如 -
实验3
Test1: #pragma once #include <iostream> #include <string> using std::string; using std::cout; // 按钮类 class Button { public: Button(const string &text) -
实验四
#include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) = %d\n", sizeof(x)); // 输 -
2024-2025-1 20241406刘书含《计算机基础与程序设计》第七周学习总结
作业信息 作业课程 2024-2025-1-计算机基础与程序设计 作业要求 2024-2025-1计算机基础与程序设计第七周作业 作业目标 数组与链表,基于数组和基于链表实现数据结构,无序表与有序表,树,图,子程序与参数 作业正文 2024-2025-1 20241328 《计算机基础与程序设计》第 -
20222402 2024-2025-1《网络与系统攻防技术》实验四实验报告
一、实验内容 本周学习内容 计算机病毒(Virus):通过感染文件(可执行文件、数据文件、电子邮件等)或磁盘引导扇区进行传播,一般需要宿主程序被执行或人为交互才能运行 蠕虫(Worm):一般为不需要宿主的单独文件,通过网络传播,自动复制通常无需人为交互便可感染传播 恶意移动代码(Maliciousm -
实验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 class Button{ 10 public: 11 Bu -
2024-2025-1 20241408陈烨南《计算机基础与程序设计》第七周学习总结
这个作业属于哪个课程 2024-2025-1-计算机基础与程序设计) 这个作业要求在哪里 https://www.cnblogs.com/rocedu/p/9577842.html#WEEK07 这个作业的目标 数组与链表、基于数组和基于链表实现数据结构、无序表与有序表、树、图、子程序与参数 作业正 -
实验3
任务一: button.hpp: #pragma once #include <iostream> #include <string> using std::string; using std::cout; // 按钮类 class Button { public: Button(const str -
实验3
1 #pragma once 2 #include "button.hpp" 3 #include<vector> 4 #include<iostream> 5 6 using std::vector; 7 using std::cout; 8 using std::endl; 9 10 //窗口类 -
20222319 2024-2025-1 《网络与系统攻防技术》实验四实验报告
1.实验要求 1.1 实验内容 一、恶意代码文件类型标识、脱壳与字符串提取 对提供的rada恶意代码样本,进行文件类型识别,脱壳与字符串提取,以获得rada恶意代码的编写作者,具体操作如下: (1)使用文件格式和类型识别工具,给出rada恶意代码样本的文件格式、运行平台和加壳工具; (2)使用超级巡 -
20222409 2024-2025-1 《网络与系统攻防技术》实验四实验报告
1.实验内容 1.1 本周学习内容 本周学习了恶意代码分析的基本方法,静态分析和动态分析的核心概念。静态分析主要通过代码结构和API调用等特征来识别恶意行为,动态分析则使用沙箱等环境运行代码,观察其行为。 通过实验学习了IDA Pro和Process Monitor等工具的基本操作。 1.2 实践内 -
实验三
任务一 button.hpp #pragma once #include <iostream> #include <string> using std::string; using std::cout; // 按钮类 class Button { public: Button(const strin -
实验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)); -
# 学期2024-2025-1 学号20241416《计算机基础与程序设计》第7周学习总结
这个作业属于哪个课程 https://edu.cnblogs.com/campus/besti/2024-2025-1-CFAP/ 这个作业要求在哪里 https://www.cnblogs.com/rocedu/p/9577842.html#WEEK07 这个作业的目标 数组与链表、基于数组和基于 -
2024-2025-1 20241328 《计算机基础与程序设计》第七周学习总结
2024-2025-1 20241328 《计算机基础与程序设计》第七周学习总结 作业信息 作业课程 2024-2025-1-计算机基础与程序设计 作业要求 2024-2025-1计算机基础与程序设计第七周作业 作业目标 数组与链表,基于数组和基于链表实现数据结构,无序表与有序表,树,图,子程序与参