-
实验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 c -
NUIST_LAB03
🧪 实验报告 一、实验名称 实验2 类和对象_基础编程2 二、实验目的 理解类的组合机制(has-a),能熟练用 C++ 定义与使用组合类 理解深复制与浅复制的区别 灵活运用标准库(array、vector、string、迭代器、算法库等)解决实际问题 面向具体问题,运用面向对象思维设计类(自定义 -
数据采集作业3
第三次作业 一、作业内容 作业①: 要求:指定一个网站,爬取这个网站中的所有的所有图片,例如:中国气象网(http://www.weather.com.cn)。实现单线程和多线程的方式爬取。 –务必控制总页数(学号尾数2位)、总下载的图片数量(尾数后3位)等限制爬取的措施。 输出信息: 将下载的Ur -
oop实验三
实验任务一 源代码: #include "window.hpp" #include <iostream> void test(){ Window w("Demo"); w.add_button("add"); w.add_button("remove"); w.add_button("modify" -
20232405 2025-2026-1 《网络与系统攻防技术》实验六实验报告
1. 实验内容 (1)学会使用metasploit,并学会对靶机进行主机发现、端口扫描、漏洞扫描等操作 (2)学会利用Vsftpd源码包后门漏洞(21端口) (3)学会利用SambaMS-RPC Shell命令注入漏洞(端口139) (4)学会利用Java RMI SERVER命令执行漏洞(1099 -
高级语言程序设计课程第三次个人作业
班级连接:https://edu.cnblogs.com/campus/fzu/gjyycx 作业链接:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13574 学号:102500422 姓名:陈进和 编写并运行书本第4章4.8编程练习题目中的 -
高级语言程序设计课程第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14585 学号:102300120 姓名:覃俊源 一.编写代码 (1) -
20232403 2025-2026-1 《网络与系统攻防技术》实验六实验报告
1.实验内容 主要内容:使用ARP扫描和nmap进行主机发现与端口扫描、Vsftpd后门漏洞获得root权限、Samba命令注入漏洞获取系统访问、Java RMI反序列化漏洞建立Meterpreter会话、PHP CGI参数注入漏洞。 掌握Metasploit命令:use命令选择合适模块、set命令 -
作业3
数据采集与融合技术作业3 实验一 (1)实验过程 要求: 指定一个网站,爬取这个网站中的所有的所有图片,例如:中国气象网(http://www.weather.com.cn)。实现单线程和多线程的方式爬取。 –务必控制总页数(学号尾数2位)、总下载的图片数量(尾数后3位)等限制爬取的措施。 核心代码 -
高级语言程序设计课程第七次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号:<102500409> 姓名:<周康琳> (1)定义一 -
实验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 const s -
oop实验三
实验三: task1: 源代码: 1 #pragma once 2 #include <iostream> 3 #include <string> 4 5 class Button { 6 public: 7 Button(const std::string &label_); 8 const st -
实验6
实验任务1: contestant.hpp: #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // 姓 -
实验6
实验任务1: 源代码contestant.hpp 1 #pragma once 2 #include<iomanip> 3 #include<iostream> 4 #include<string> 5 6 struct Contestant{ 7 long id; 8 std::string na -
实验6
任务1: 源代码: contestant.hpp #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // -
实验6
一、实验任务1 源代码contestant.hpp 1 #pragma once 2 #include<iomanip> 3 #include<iostream> 4 #include<string> 5 struct Contestant{ 6 long id; 7 std::string nam -
实验3
task1: 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 -
实验6 文件I/O与异常处理
实验任务1 源代码: #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // 姓名 std::strin -
Test6
任务一 源代码 contestant.hpp 点我展开代码 #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string nam -
实验5
一 #include <stdio.h> #define N 5 void input(int x[], int n); void output(int x[], int n); void find_min_max(int x[], int n, int *pmin, int *pmax); int