-
高级语言程序设计第一次作业
这个作业属于 https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业的要求在 https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102500435 姓名:林俊杰 一、下载dev-c++ 二、安 -
高级语言设计第一次作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业的要求在 https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102500309 姓名:郑睿杰 一 安装Dev-C++ -
# 20232321 2025-2026-1 《网络与系统攻防技术》实验二实验报告
1.实验内容 (1)使用netcat获取主机操作Shell,通过cron启动某项任务 (2)使用socat获取主机操作Shell, 通过任务计划启动 (3)使用MSF meterpreter生成后门程序,利用ncat或socat传送到主机并运行获取主机Shell (4)在实验内容(3)获取的主机的基 -
实验一
实验一 task1 (1) 1 // 现代C++标准库、算法库体验 2 // 本例用到以下内容: 3 // 1.字符串string, 动态数组容器类vector、迭代器 4 // 2.算法库:反转元素次序、旋转元素 5 // 3.函数模板、const引用作为形参 6 7 #include<iostr -
高级语言程序设计第一次作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102500323 姓名:黄铭昊 一.安装C程序编译环 -
作业1
网络数据爬取作业实践报告 作业一:大学排名信息爬取实践 1.1 作业代码与运行结果 核心代码 def get_university_ranking(): """ 爬取软科中国大学排名数据 """ # 目标URL url = "http://www.shanghairanking.cn/ranking -
oop实验一
实验一: task1: 源代码: 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 template<typename T> 7 void output(const T & -
实验1 现代C++编程初体验
任务一 源代码 #include <iostream> #include <string> #include <vector> #include <algorithm> // 模板函数声明 template<typename T> void output(const T &c); void test -
实验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 -
task2
任务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,random_no; sr -
作业 1 杨明浩 102500431
安装环境和安装成功 示例2.1 示例2.2 示例2.3 总结:学会了基本的c语言的大框架,以及函数printf的用法,了解到基本的数据类型 这个作业属于哪个课程https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblog -
实验1
任务1 源代码 #include<iostream> #include<string> #include<vector> #include<algorithm> template<typename T> void output(const T& c); void test1(); void test -
20232402 2025-2026-1 《网络与系统攻防技术》实验一实验报告
20232402 2025-2026-1 《网络与系统攻防技术》实验一实验报告 1.实验内容 本周学习内容为缓冲区溢出漏洞简介和缓冲区溢出基础知识。 1.1 缓冲区溢出漏洞简介 缓冲区是连续的一段存储空间。 缓冲区溢出是指向特定缓冲区填充数据时,超出了缓冲区容量,导致外溢数据覆盖了相邻内存空间的合法 -
代码规范与数学之美
一.编码规范 (1)给变量起 “好记的名”。变量名要能看出是干啥的,取一个可观的名字能大大增加代码可读性。(2)别让一行代码太长:一行代码别写得太满,超过屏幕宽度就换行,比如把长的计算拆成两行,不用横向拖动屏幕看,方便自己浏览。(3)缩进和空格别乱加:写代码时,遇到if、for这类语句,里面的代码要 -
实验一
task1: 代码: 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 template<typename T> 7 void output(const T &c); 8 -
作业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 -
算法第一章
一、编码规范 缩进与空行:统一使用4个空格缩进 空格规则:双目运算符(+、=、== 等)前后加空格 换行要求:if、for 等语句独占一行 命名规范:使用完整英文单词,避免拼音或无意义缩写,变量名需体现类型与功能。小驼峰命名法(如courseScore、calculateSortTime);大驼峰命 -
实验二
Task1: 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 { 9 int cnt; 10 int -
实验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, random_ -
算法第一章作业
一.编码规范 核心理念:代码是写给人看的,只是顺带让机器执行。 清晰、一致、可维护性是我们的首要目标。 命名规范 变量/函数名: 使用有意义的、描述性的名称,采用驼峰命名法。 常量: 全部大写,单词间用下划线分隔。 布尔变量: 使用 is, has, can 等前缀,使其意义明确。 格式与风格 行宽