-
第二次结对作业
这个作业属于哪个课程 https://edu.cnblogs.com/campus/fzu/SE2024 这个作业要求在哪里 https://edu.cnblogs.com/campus/fzu/SE2024/homework/13281 这个作业的目标 将上次结对作业的内容用代码实现 姓名及学号 -
实验1 C++
#include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; template<typename T> void output(const T &c); void t -
实验一 现代C++编程初体验
实验结论: 任务一: task1.cpp 1 // 现代C++标准库、算法库体验 2 // 本例用到以下内容: 3 // 1. 字符串string, 动态数组容器类vector、迭代器 4 // 2. 算法库:反转元素次序、旋转元素 5 // 3. 函数模板、const引用作为形参 6 7 #inc -
实验一
实验一 实验任务1: // 现代C++标准库、算法库体验 // 本例用到以下内容: // 1. 字符串string, 动态数组容器类vector、迭代器 // 2. 算法库:反转元素次序、旋转元素 // 3. 函数模板、const引用作为形参 #include <algorithm> #includ -
软件工程第二次结对作业
这个作业属于哪个课程 https://edu.cnblogs.com/campus/fzu/SE2024 这个作业要求在哪里 https://edu.cnblogs.com/campus/fzu/SE2024/homework/13261 这个作业的目标 第一次结对作业的代码实现 学号 102201 -
博客主页地址
https://home.cnblogs.com/u/liujinyanyan -
实验二
task 1: 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 int main -
2024秋软件工程结对作业(第二次)
软件工程 班级链接:https://edu.cnblogs.com/campus/fzu/SE2024 作业要求链接 https://edu.cnblogs.com/campus/fzu/SE2024/homework/13281 作业目标 开发一套跨专业合作平台,为大学生提供发起和参与跨学科项目的 -
20222305 2024-2025-1 《网络与系统攻防技术》实验一实验报告
网络攻防实验报告 姓名:田青 学号:20222305 实验日期:2024/09/29 — 2024/10/09 实验名称:缓冲区溢出和shellcode 指导教师:王志强 1.实验内容 本周学习内容总结:学习了系统安全(缓冲区溢出是重点) 主要内容: 漏洞简介:定义以及安全漏洞。 BOF(缓冲区溢出 -
实验1 现代C++编程初体验
任务1: // 现代C++标准库、算法库体验 // 本例用到以下内容: // 1. 字符串string, 动态数组容器类vector、迭代器 // 2. 算法库:反转元素次序、旋转元素 // 3. 函数模板、const引用作为形参 #include <iostream> #include <stri -
实验2
任务一 #include<stdio.h> #include<stdlib.h> #include<time.h> #define N 5 #define N1 397 #define N2 476 #define N3 21 int main(){ int cnt; int random_majo -
软件工程第二次结对作业
这个作业属于哪个课程 软件工程 这个作业要求在哪里 作业要求 这个作业的目标 通过与队友的协作交流完成一个软件的设计,并进行测试与运用 学号 102202107&&102202140 2024秋软件工程第二次结对作业报告 项目信息 GitHub仓库地址: 102202107-102202140仓库 -
实验二
任务1 问题1:答:给 random_no 随机赋值为 398 — 476 中的一个值。 问题2:答:给 random_no 随机赋值为 3 — 21 中的一个值。 问题3:答:随机生成 202483290003 — 202483290021 或 202483290398 — 20248329047 -
软件工程结对作业(第二次之程序实现)
这个作业属于哪个课程 软件工程 这个作业要求在哪里 作业要求 这个作业的目标 通过与队友的协作交流完成一个软件的设计,并进行测试与运用 学号 102202107&&102202140 2024秋软件工程第二次结对作业报告 项目信息 GitHub仓库地址: 102202107-102202140仓库 -
实验2
任务1 代码 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 int main( -
实验2
任务1 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 int main(){ -
实验2_C语言分支与循环基础应用编程
task1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 397 #define N2 476 #define N3 21 // 随机摇学号 int main() { int cnt; -
实验二
任务一 源代码: # include<stdio.h> # include<stdlib.h> # include<time.h> #define N 5 #define N1 397 #define N2 476 #define N3 21 int main() { int cnt; int ra -
20222313 2024-2025-1《网络与系统攻防技术》实验一报告
1.实验内容 本次实践的对象是一个名为pwn1的linux可执行文件。 该程序正常执行流程是:main调用foo函数,foo函数会简单回显任何用户输入的字符串。 该程序同时包含另一个代码片段,getShell,会返回一个可用Shell。正常情况下这个代码是不会被运行的。我们实践的目标就是想办法运行这 -
实验2
实验1 源代码 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 int main