-
work7
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号:102500331 姓名:余武 1.定义一个二维数组和 -
高级语言程序设计课程第七次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业的要求在:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号:102500326 姓名:罗炜 1 2 3 4 5 6 -
高级语言程序设计课程第七次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号:102500411 姓名:陈鸿彬 一、(1)~(8) -
实验作业3
实验三:类和对象基础编程2 实验任务1 代码 task1.cpp #include "window.hpp" #include <iostream> void test(){ Window w("Demo"); w.add_button("add"); w.add_button("remove"); -
20232417 2025-2026-1 《网络与系统攻防技术》实验七实验报告
1.实验内容 1.1实验目的 本实践的目标理解常用网络欺诈背后的原理,以提高防范意识,并提出具体防范方法。具体实践有 (1)简单应用SET工具建立冒名网站 (2)ettercap DNS spoof (3)结合应用两种技术,用DNS spoof引导特定访问到冒名网站。 1.2学习内容 (1)学习SE -
实验三.类和对象
任务1. button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::string& get_la -
实验三
实验任务一: button.hpp 1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 class Button { 7 public: 8 Button(const std::string &label_); 9 const -
数据采集与融合技术作业3
作业1 指定一个网站,爬取这个网站中的所有的所有图片,例如中国气象网(http://www.weather.com.cn)。实现单线程和多线程的方式爬取。 核心代码 单线程: 点击查看代码 def crawl_page(self, url): """爬取单个页面""" if url in self. -
实验3
1.实验任务1 button.hpp源码 点击查看代码 #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::st -
实验3
#任务1 ##代码 ###button.hpp 1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 class Button { 7 public: 8 Button(const std::string &label_); 9 -
20232315 2025-2026-1 《网络与系统攻防技术》实验六实验报告
20232315 2025-2026-1 《网络与系统攻防技术》实验六实验报告 目录 一、实验基本信息 二、实验内容及要求 三、实验过程 3.1 前期渗透 3.2 漏洞利用 四、问题及解决方案 五、实验感想 一、实验基本信息 实验环境:Kali Linux虚拟机 + VMware Workstati -
20232403 2025-2026-1 《网络与系统攻防技术》实验六实验报告
1.实验内容 主要内容:使用ARP扫描和nmap进行主机发现与端口扫描、Vsftpd后门漏洞获得root权限、Samba命令注入漏洞获取系统访问、Java RMI反序列化漏洞建立Meterpreter会话、PHP CGI参数注入漏洞。 掌握Metasploit命令:use命令选择合适模块、set命令 -
实验三
任务1: 源代码: button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::string& g -
实验3
实验3 实验结论: 实验任务1: 源码: button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std -
高级语言程序设计课程第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14585 学号:102500323 姓名:黄铭昊 (1)设计一个按值传 -
OOP-实验3
实验任务1 源代码task1 1 // Button类定义、实现 2 3 #pragma once 4 5 #include <iostream> 6 #include <string> 7 8 class Button 9 { 10 public: 11 Button(const std::str -
高级语言程序设计第六次个人作业
高级语言程序设计第六次个人作业 作业课程:2025高级语言程序设计(福州大学) 作业要求:高级语言程序设计第六次个人作业 学号:052406103 姓名:叶银珍 作业内容 设计一个按值传递和按地址传递呈现不同效果的程序。 #include<stdio.h> void change1(int a,in -
实验3
一、实验任务1 源代码button.hpp 1 #pragma once 2 #include<iostream> 3 #include<string> 4 class Button{ 5 public: 6 Button(const std::string &label_); 7 const st -
高级语言程序设计课程第六次个人作业
这个作业属于:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业的要求:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14585 学号:102500420 姓名:连骁晗 (1)设计一个按值传递和按地址传 -
实验3
任务1 button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::string& get_lab