-
实验4
任务1 源代码: 编译 问1:是,不一样 问2:是,不一样,差4 任务2 源代码: 编译 问:输入,调用函数 任务3 源代码: 编译 任务4 源代码: 编译 任务5 源代码: 编译 任务6 源代码: 编译 任务7 源代码: 编译 -
实验3 类和对象_基础编程2
实验任务1 bottom.hpp #pragma once #include <iostream> #include <string> using std::string; using std::cout; // 按钮类 class Button { public: Button(const str -
# 20222309 2024-2025-1 《网络与系统攻防技术》实验四实验报告
1.实验内容 一、恶意代码文件类型标识、脱壳与字符串提取 对提供的rada恶意代码样本,进行文件类型识别,脱壳与字符串提取,以获得rada恶意代码的编写作者,具体操作如下: (1)使用文件格式和类型识别工具,给出rada恶意代码样本的文件格式、运行平台和加壳工具; (2)使用超级巡警脱壳机等脱壳软件 -
高级语言程序设计课程第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/2024C/home 学号:102400124 姓名:邱语堂 (1)编写函数fun(int m, int -
20222405 2024-2025-1 《网络与系统攻防技术》实验四实验报告
1.实验内容 (1)恶意代码文件类型标识、脱壳与字符串提取 (2)使用IDA Pro静态或动态分析crackme1.exe与crakeme2.exe,寻找特定输入,使其能够输出成功信息。 (3)分析一个自制恶意代码样本rada,并撰写报告,回答问题 (4)取证分析实践 2.实验过程 2.1 恶意代码 -
实验四
任务一 源代码 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 void test1(){ 5 int x[N]={1,9,8,4}; 6 int i; 7 printf("sizeof(x)=%d\n",sizeof(x)); 8 for(i= -
20222306 2024-2025-1 《网络与系统攻防技术》实验四实验报告
1.实验内容 1.1 基本概念 1.1.1什么是恶意代码? 恶意代码(Malicious Code)是指在计算机系统或网络中,被设计用来对系统造成损害、窃取信息、干扰正常操作或执行其他恶意目的的软件或程序片段。 1.1.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 for(i -
实验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 Butt -
实验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( -
数据采集与融合技术作业三
作业①: 要求:指定一个网站,爬取这个网站中的所有的所有图片,例如:中国气象网(http://www.weather.com.cn)。使用scrapy框架分别实现单线程和多线程的方式爬取。 –务必控制总页数(学号尾数2位)、总下载的图片数量(尾数后3位)等限制爬取的措施。 输出信息: 将下载的Url -
实验三
实验任务1 button.hpp代码 点击查看代码 #pragma once #include <iostream> #include <string> using std::string; using std::cout; // 按钮类 class Button { public: Button( -
实验3
实验任务1: 问题1:一共2个类,使用了标准库的string和vector 问题2:剩余成员函数基本不改变对象的值,没有必要加const,可以设置inline 问题3:初始化一个string类型的对象用于分割输出结果 实验任务2: 问题1:第一行定义并初始化一个vector类型存储int类型数据的对 -
实验3 类和对象_基础编程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 pu -
实验4
实验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(" -
实验3 c++
任务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 -
实验4 C语言数组应用编程
一、实验目的 能正确使用C语法规则定义,初始化,访问,输入/输出一维/二维数组 能正确使用数组作为函数参数 针对具体问题场景,能灵活用数组数据,应用设计算法编程解决实际问题 二、实验准备 语法规则:数组(一维/二维)的定义,初始化,访问 语法规则:数组作为函数参数时函数的定义,声明,调用 冒泡排序算 -
实验四 C语言数组应用编程
实验四 C语言数组应用编程 实验任务1——内存地址 #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = { 1, 9, 8, 4 }; int i; // 输出数组x占用的内存字节数 printf("sizeof( -
实验3 类和对象_基础编程2
实验任务一 代码 window.hpp 1 #pragma once 2 #include "button.hpp" 3 #include <vector> 4 #include <iostream> 5 6 using std::vector; 7 using std::cout; 8 using -
高级语言程序设计课程第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C/ 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 学号:102300134 姓名:曾威 (1)编写函数fun(