-
软件工程第三次作业-结对项目
这个作业属于哪个课程 班级的链接 这个作业要求在哪里 作业要求的链接 这个作业的目标 完成结对项目并编写博客报告 一、Github作业地址 邹泓昊:https://github.com/Yaolqn/Yaolqn/tree/main/arthmetic_device 杨梓城:https://gith -
高级语言程序设计第二次作业
班级链接:https://edu.cnblogs.com/campus/fzu/gjyycx 作业要求链接:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102500330 姓名:黄明浩 任务一:编写并运行书本第3章3.11 -
软件工程第三次作业——结对项目
这个作业属于哪个课程 https://edu.cnblogs.com/campus/gdgy/Class12Grade23ComputerScience 这个作业要求在哪里 https://edu.cnblogs.com/campus/gdgy/Class12Grade23ComputerScien -
实验作业2
实验1 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #define N 5 5 #define N1 80 6 #define N2 35 7 int main() { 8 int cnt; 9 int rando -
实验2
1.实验任务1 task1.c 点击查看代码 #include<stdio.h> #include<stdlib.h> #include<time.h> #define N 5 #define N1 80 #define N2 35 int main(){ int cnt; int random_m -
实验2
实验任务1: 删除代码后: 问题1:删除后学号固定出现,删除前随机刷 实验任务2: 删除代码后: 问题1:第一次购买的价格未清零,在第二次购买时一并算上 问题2:输入无效数据时,重新开始该循环,保证购买顺序 实验任务3: 1 #include<stdio.h> 2 int main(){ 3 cha -
20232422 2025-2026-1 《网络与系统攻防技术》实验一实验报告
实验目的 掌握ELF可执行文件的机器指令修改方法,理解程序执行流控制原理; 理解缓冲区溢出(BOF)漏洞的原理,掌握通过覆盖返回地址改变程序执行流的攻击方法; 学会构造并注入shellcode,理解漏洞利用的完整流程; 熟练使用gdb、wxHexEditor、WinSCP、execstack等工具。 -
实验1
实验任务1 task1.cpp #include <iostream> #include <string> #include <vector> #include <algorithm> template<typename T> void output(const T &c); void test1( -
实验一
Task 1 源代码 #include <iostream> #include <string> #include <vector> #include <algorithm> template<typename T> void output(const T& c); void test1(); vo -
博客地址
https://www.cnblogs.com/JxLi -
作业1
102500425杨郑伟 https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 https://edu.cnblogs.com/campus/fzu/gjyycx -
实验2
实验任务1 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #define N 5 5 #define N1 80 6 #define N2 35 7 int main() { 8 int cnt; 9 int ran -
102500410 杜惟真 10月14日作业
下载完成: 代码截图: (记得在每行代码后加入分号!) 运行界面: 这份作业属于的课程:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 这份作业的要求:https://edu.cnblogs.com/campus/fzu/gjyycx -
20232317 2025-2026-1《网络与系统攻防技术》实验一实验报告
1.实验内容 1.1手工修改可执行文件,改变程序执行流程,直接跳转到getShell函数。 1.2利用foo函数的Bof漏洞,构造一个攻击输入字符串,覆盖返回地址,触发getShell函数。 1.3注入一个自己制作的shellcode并运行这段shellcode。 2.实验过程 2.1实践一 首先下 -
高级语言程序设计第一次作业
班级链接:https://edu.cnblogs.com/campus/fzu/gjyycx 作业要求链接:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102500412 姓名:曾锦城 安装完成dev 2.1 2.2 2.3 -
高级语言设计第一次作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业的要求在 https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102500309 姓名:郑睿杰 一 安装Dev-C++ -
算法第一章作业
Google 编码规范 适用范围:覆盖 C++、Java、Python、Go 等主流语言,开源且被广泛参考 核心特点: 命名:C++/Java 类名用PascalCase,函数 / 变量用snake_case(Python)或camelCase(Java) 格式:缩进用 2 空格,每行不超过 80 -
实验一
// 现代C++标准库、算法库体验 // 本例用到以下内容: // 1. 字符串string, 动态数组容器类vector、迭代器 // 2. 算法库:反转元素次序、旋转元素 // 3. 函数模板、const引用作为形参 #include <iostream> #include <string> # -
实验一
1.实验任务1 task1.cpp: // 现代C++标准库、算法库体验 // 本例用到以下内容: // 1. 字符串string, 动态数组容器类vector、迭代器 // 2. 算法库:反转元素次序、旋转元素 // 3. 函数模板、const引用作为形参 #include <iostream> -
算法第二章作业
找第 k 小的数的分治算法自然语言描述: 找第 k 小的数的分治算法,首先要选择一个基准元素,然后将数组分成两部分,一部分是小于等于基准元素的数,另一部分是大于基准元素的数。假设基准元素在划分后位于数组的第 m 个位置(从 1 开始计数)。如果 m 等于 k,那么基准元素就是第 k 小的数;如果 m