-
高级程序语言第七次作业
高级程序语言第七次作业 这个作业属于哪个课程 https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里 https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号 222200424 姓名 赵伟 -
20232402 2025-2026-1 《网络与系统攻防技术》实验七实验报告
20232402 2025-2026-1 《网络与系统攻防技术》实验七实验报告 1.实验内容 (1)应用SET工具建立冒名网站 (2)完成Ettercap DNS欺骗配置 (3)结合应用两种技术,用DNS spoof引导特定访问到冒名网站 2.实验过程 2.1 使用SET工具建立冒名网站 2.1.1 -
20232325 2025-2026-1 《网络与系统攻防技术》实验七实验报告
实验报告:网络欺诈与防范实践 1. 实验内容 使用SET工具建立冒名网站; 使用Ettercap进行DNS欺骗; 将SET与Ettercap结合,对靶机进行钓鱼攻击; 提高防范意识,并提出具体防范方法。 2. 实验目的 对DNS欺骗与冒名网站进行尝试,通过实践理解常用网络欺诈背后的原理,以提高防范意 -
数据采集第三次作业
作业1 单/多线程图片爬取实验 (1)要求:指定一个网站,爬取这个网站中的所有的所有图片,例如中国气象网(http://www.weather.com.cn)。实现单线程和多线程的方式爬取。 代码: 单线程 # simple_single.py import os import requests f -
实验4 组合与继承
实验任务1 代码: GradeCalc.hpp #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string& cname -
高级语言程序设计课程第八次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15590 学号:102500311 姓名:王梓涵 编写并运行书本第1 -
高级语言程序设计课程第八次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15590 学号:102500312 姓名:朱喻辰 编写并运行书本第1 -
高级语言程序设计课程第八次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15590 学号:102500305 姓名:赖晓娟 一.编写并运行书本第 -
实验四
任务一: GradeCalc.hpp #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string& cname); vo -
20232419 2025-2026-1 《网络与系统攻防技术》实验八实验报告
1.实验内容 (1)Web前端HTML 能正常安装、启停Apache。理解HTML,理解表单,理解GET与POST方法,编写一个含有表单的HTML。 (2)Web前端javascipt 理解JavaScript的基本功能,理解DOM。 在(1)的基础上,编写JavaScript验证用户名、密码的规则 -
实验四
试验任务一 源代码 GradeCalc.hpp 点击查看代码 #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string -
实验4
实验1 代码 GradeCalc.hpp #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string &cname); -
实验四
任务一: GradeCalc.hpp #pragma once #include<vector> #include<array> #include<string> class GradeCalc{ public: GradeCalc(const std::string &cname); void i -
实验4
1. 实验任务1 源代码 1 #pragma once 2 #include<vector> 3 #include<array> 4 #include<string> 5 class GradeCalc{ 6 public: 7 GradeCalc(const std::string &cname) -
实验四-组合与继承
实验任务1源代码: 1 #pragma once 2 3 #include <vector> 4 #include <array> 5 #include <string> 6 7 class GradeCalc { 8 public: 9 GradeCalc(const std::string& c -
实验4
一、实验任务1 源代码task1 1 #include <algorithm> 2 #include <array> 3 #include <cstdlib> 4 #include <iomanip> 5 #include <iostream> 6 #include <numeric> 7 #inc -
实验4
任务1:源代码: 1 #pragma once 2 3 #include <vector> 4 #include <array> 5 #include <string> 6 7 class GradeCalc { 8 public: 9 GradeCalc(const std::string &cn -
实验四
task1: Gradecalc.hpp #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string &cname); -
OOP-实验4
实验任务1 源代码 GradeCalc.hpp,GradeCalc.cpp,task1.cpp 点击查看代码 GradeCalc.hpp #pragma once #include <vector> #include <array> #include <string> class GradeCalc -
实验4
task1 1.源代码 GradeCalc.hpp 1 #pragma once 2 3 #include <vector> 4 #include <array> 5 #include <string> 6 7 class GradeCalc { 8 public: 9 GradeCalc(cons