-
实验一
task1 task2 task3 task4 #include<iostream> #include<string> #include<algorithm> bool is_palindrome(const std::string& s); bool is_palindrome_ignore_ca -
软件工程第三次作业-结对作业
软件工程第三次作业——结对作业 结对作业 实现一个自动生成小学四则运算题目的命令行程序 (也可以用图像界面,具有相似功能) 这个作业属于哪个课程 https://edu.cnblogs.com/campus/gdgy/Class12Grade23ComputerScience 这个作业要求在哪里 h -
软工第三次作业
这个作业属于哪个课程 https://edu.cnblogs.com/campus/gdgy/Class12Grade23ComputerScience/ 这个作业要求在哪里 https://edu.cnblogs.com/campus/gdgy/Class12Grade23ComputerScie -
高级语言程序设计课程第二次个人作业
班级链接:https://edu.cnblogs.com/campus/fzu/gjyycx 作业要求:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13570 姓名:卢龙腾 学号:102500324 一.课本编程练习 1. 2. 3. 4. -
20232319 2025-2026-1 《网络与系统攻防技术》实验二实验报告
一、实验内容 1.实践目标 (1)使用netcat获取主机操作Shell,cron启动某项任务(任务自定) PS:cron是linux下用来周期性的执行某种任务或等待处理某些事件的一个守护进程 (2)使用socat获取主机操作Shell, 任务计划启动 (3)使用MSF meterpreter(或其 -
实验一
##实验任务一 ##代码 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 template<typename T> 6 void output(const T &c); 7 -
实验1 现代C++编程初体验
任务1: 源代码task1.cpp 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 7 template<typename T> 8 void output(const -
高级程序语言设计第一次作业
这个作业属于 https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求 https://edu.cnblogs.com/campus/fzu/gjyycx/homework 学号:102500319 姓名:刘江涵 1.安装过程及安装成功截图 2.运行程序的代码 -
20232317 2025-2026-1《网络与系统攻防技术》实验一实验报告
1.实验内容 1.1手工修改可执行文件,改变程序执行流程,直接跳转到getShell函数。 1.2利用foo函数的Bof漏洞,构造一个攻击输入字符串,覆盖返回地址,触发getShell函数。 1.3注入一个自己制作的shellcode并运行这段shellcode。 2.实验过程 2.1实践一 首先下 -
作业1
102500425杨郑伟 https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 https://edu.cnblogs.com/campus/fzu/gjyycx -
高级语言程序设计第一次作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102500317 姓名:叶伟鸿 一、安装C语言环境 -
实验2
实验任务1: #include <stdio.h>#include <stdlib.h>#include <time.h>#define N 5#define N1 80#define N2 35int main() { int cnt; int random_major, random_no; s -
实验2
实验2的作业 实验任务1 问题一 srand(time(NULL)的作用是根据当前系统时间初始化随机数生成器,让每次程序运行时产生不同的随机数,从而避免重复。 问题二 随机抽取两个专业中的五个学号。 #include <stdio.h> #include <stdlib.h> #include <t -
实验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: 源代码: #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 80 #define N2 35 int main(){ int cnt; int random_major,ran -
20232426 2025-2026-1 《网络与系统攻防技术》实验一实验报告
20232426 2025-2026-1 《网络与系统攻防技术》实验一实验报告 一、实验目标(内容) 掌握缓冲区溢出的基本原理。 理解栈的工作方式和返回地址覆盖。 学会编写和注入Shellcode,并在Linux下调试。 熟悉gdb、objdump等调试与分析工具。 二、实验知识点回顾(本周学习的内 -
实验1 现代C++编程初体验
实验任务1 task1.cpp 点击查看代码 #include <iostream> #include <string> #include <vector> #include <algorithm> template<typename T> void output(const T &c); void -
实验1
任务一: #include <iostream> #include <string> #include <vector> #include <algorithm> template<typename T> void output(const T &c); void test1(); void tes -
实验1现代C++编程初体验
// 现代C++标准库、算法库体验 // 本例用到以下内容: // 1. 字符串string, 动态数组容器类vector、迭代器 // 2. 算法库:反转元素次序、旋转元素 // 3. 函数模板、const引用作为形参 #include <iostream> #include <string> # -
实验一 现代C++编程初体验
任务1 源代码task1.cpp #include <iostream> #include <string> #include <vector> #include <algorithm> template<typename T> void output(const T &c); void test1