-
实验3
一 #include<stdio.h> char score_to_grade(int score); int main() { int score; char grade; while(scanf("%d",&score)!=EOF) { grade=score_to_grade(score); -
高级语言程序设计课程第三次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13574 学号:102500320 姓名:张振锟 一、运行以下程序给 -
查找第k小的数
// 全局变量 k2:整数 // 存储基准值的最终位置 len: 整数 // 存储当前分区长度 // 分区函数 函数 partition(a: 整数数组, left: 整数, right: 整数) 返回 整数数组指针: m = a[left] // 选择第一个元素作为基准值 l = 0 // 左指针 -
实验作业2
四、实验结论 实验内容1 代码1 T.cpp 1 #include "T.h" 2 #include <iostream> 3 #include <string> 4 5 // 类T实现 6 7 // static成员数据类外初始化 8 const std::string T::doc{"a sim -
高级语言程序第二次作业
C语言02次作业 这个作业属于哪个课程 2025高级语言程序设计 (福州大学) 这个作业要求在哪里 高级程序语言第二次作业 学号 102300317 姓名 李东阳 第三章课后作业 3.1 有符号整数的最大值最小值都由于溢出,分别变成了最小值和最大值,这是由于二进制补码表示的结果。 无符号整数,最小值 -
高级语言程序设计作业2
高级语言程序设计作业2 作业课程:https://edu.cnblogs.com/campus/fzu/gjyycx 作业要求:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13570 学号:102300120 姓名:覃俊源 一.编写并运行书本 -
实验2
实验任务1 T.h: #pragma once #include <string> class T { public: T(int x = 0, int y = 0); T(const T &t); T(T &&t); ~T(); void adjust(int ratio); void displ -
实验2
任务1源代码: 1 #pragma once 2 #include<string> 3 4 //类T:声明 5 class T 6 { 7 //对象属性、方法 8 public: 9 T(int x = 0, int y = 0);//普通构造函数 10 T(const T& t);//复制构造函数 -
实验二
实验任务 源代码如下: T.h 点击查看代码 #pragma once #include <string> class T { public: T(int x = 0, int y = 0); T(const T &t); T(T &&t); ~T(); void adjust(int ratio) -
20232415 2025-2026-1 《网络与系统攻防技术》实验三实验报告
一、实验目的 1.利用msfvenom生成多种类型的文件及其多次编码版本 2.利用veil生成恶意代码 3.利用C语言结合shellcode生成恶意文件 4.利用upx压缩壳以及hyp加密壳技术实现免杀 5.开启杀软后回连实测 二、实验过程 接下来的免杀效果将基于virscan检测平台检测结果进行评 -
实验二
#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, random_no; sr -
实验二
实验任务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 -
高级语言程序设计第一次作业
班级:https://edu.cnblogs.com/campus/fzu/gjyycx 作业要求:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102500403 姓名:周悦铃 一、安装C程序的编译环境 1.从microso -
102500410 杜惟真 10月14日作业
下载完成: 代码截图: (记得在每行代码后加入分号!) 运行界面: 这份作业属于的课程: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/giyycx/homework/13558 学号:102500304 姓名:黄燕婷 1.安装C程序的编评环境 2 -
20232317 2025-2026-1《网络与系统攻防技术》实验一实验报告
1.实验内容 1.1手工修改可执行文件,改变程序执行流程,直接跳转到getShell函数。 1.2利用foo函数的Bof漏洞,构造一个攻击输入字符串,覆盖返回地址,触发getShell函数。 1.3注入一个自己制作的shellcode并运行这段shellcode。 2.实验过程 2.1实践一 首先下 -
实验一 现代C++编程初体验
任务1 源代码task1.cpp #include <iostream> #include <string> #include <vector> #include <algorithm> template<typename T> void output(const T &c); void test1 -
实验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 -
实验一
task1 // 现代C++标准库、算法库体验 // 本例用到以下内容: // 1. 字符串string, 动态数组容器类vector、迭代器 // 2. 算法库:反转元素次序、旋转元素 // 3. 函数模板、const引用作为形参 #include <iostream> #include <str