• 首页
  • 校区
  • 班级
  • 博文
  • 评论
  • 作业
总阅读排行 | 周阅读排行 | 零回复 | 有回复 | 作业博文 | 其他博文 | 所有博文
零回复 | 有回复 | 作业 | 其他 | 所有
  • 数据采集第三次作业-102302128吴建良

    《数据采集与融合》第三次作业 学号: 102302128姓名: 吴建良 Gitee仓库地址: https://gitee.com/wujianliang9/2025-data-collection/tree/master/第三次作业 作业①:多线程爬取网站图片 一、核心思路与代码 1. MiniCr
     2025数据采集与融合技术实践(福州大学 - 福州大学计算机与大数据学院)   wujianliang   2025-11-25 21:37    0    10
  • 实验3类和对象

    实验任务1 源代码如下: button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::string
     面向对象程序设计(南京信息工程大学)   勤垦原   2025-11-26 00:37    1    10
  • 实验03

    实验一 button.hpp #pragma once #include<iostream> #include<string> class Button{ public: Button(const std::string &label_); const std::string &get_label(
     面向对象程序设计(南京信息工程大学)   myFuji1   2025-11-26 00:12    1    10
  • 022304105叶骋恺数据采集第四次作业

    作业1 代码与运行结果 for market_type in ["沪深A股", "上证A股", "深证A股"]: driver.get(market_urls[market_type]) time.sleep(5) try: wait.until(EC.presence_of_element_loc
     2025数据采集与融合技术实践(福州大学 - 福州大学计算机与大数据学院)   lyxcba   2025-11-28 18:17    0    10
  • 实验四

    任务一: 1.源代码: (1)GradeCalc.hpp: #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string
     面向对象程序设计(南京信息工程大学)   Likgon   2025-11-28 21:37    1    10
  • 实验4

    实验任务1: GradeCalc.hpp #pragma once #include<vector> #include<array> #include<string> class GradeCalc{ public: GradeCalc(const std::string &cname); void
     面向对象程序设计(南京信息工程大学)   fuilk   2025-11-29 21:59    1    10
  • 实验三

    实验任务一: 源代码: #include "window.hpp" #include <iostream> void test(){ Window w("Demo"); w.add_button("add"); w.add_button("remove"); w.add_button("modify
     面向对象程序设计(南京信息工程大学)   小猫先生   2025-11-25 15:02    1    10
  • 实验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
     面向对象程序设计(南京信息工程大学)   艾拉i   2025-11-25 22:29    1    10
  • 实验三

    实验任务1 代码: button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string& label_); const std::string& g
     面向对象程序设计(南京信息工程大学)   l栗l   2025-11-25 19:00    2    10
  • 数据采集第三次作业

    作业①: 要求:指定一个网站,爬取这个网站中的所有的所有图片,例如:中国气象网(http://www.weather.com.cn)。实现单线程和多线程的方式爬取。 点击查看代码 import requests from bs4 import BeautifulSoup import os impo
     2025数据采集与融合技术实践(福州大学 - 福州大学计算机与大数据学院)   yy71   2025-11-24 22:45    0    10
  • OOP实验三

    任务一: task1.cpp: #include "window.hpp" #include <iostream> void test(){ Window w("Demo"); w.add_button("add"); w.add_button("remove"); w.add_button("mo
     面向对象程序设计(南京信息工程大学)   yueTO   2025-11-23 10:10    1    10
  • 高级语言程序设计课程第六次个人作业

    班级:https://edu.cnblogs.com/campus/fzu/gjyycx 课程:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14585 学号:102500422 姓名:陈进和 (1)设计一个按值传递和按地址传递呈现不同效果的程
     2025高级语言程序设计(福州大学)   NJJz   2025-11-24 19:53    0    10
  • 20232309 2025-2026-1 《网络与系统攻防技术》实验六实验报告

    1.实验内容 1.1学习内容 信息搜集技术(特别是网段和主机的扫描)、不同类型的漏洞攻击 1.2实验任务 前期渗透 主机发现(可用Aux中的arp_sweep,search一下就可以use) 端口扫描:可以直接用nmap,也可以用Aux中的portscan/tcp等。 选做:也可以扫系统版本、漏洞等
     2025-2026-1-网络与系统攻防技术(2323/2324)(北京电子科技学院)   总是学不会T_T   2025-11-23 22:38    0    10
  • 实验3

    Task1 代码 Button.h #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string& label_); const std::string& get_
     面向对象程序设计(南京信息工程大学)   永和九年2   2025-11-23 16:32    1    10
  • 实验3

    #task1 ##1.源代码 该任务为验证性实验,无需要手写代码,故此处不提供源代码 ##2.运行测试截图 ##3.回答问题 问题1: 这个范例中, Window 和 Button 是组合关系吗? 答:是 问题2: bool has_button(const std::string &label)
     面向对象程序设计(南京信息工程大学)   knight-k3   2025-11-25 20:51    1    10
  • 102302110高悦作业3

    作业①: 要求:指定一个网站,爬取这个网站中的所有的所有图片,例如:中国气象网(http://www.weather.com.cn)。实现单线程和多线程的方式爬取。 –务必控制总页数(学号尾数2位)、总下载的图片数量(尾数后3位)等限制爬取的措施。 1.实现过程及代码 1.1 单线程 1.1.1获取
     2025数据采集与融合技术实践(福州大学 - 福州大学计算机与大数据学院)   小堆小堆   2025-11-21 01:07    0    10
  • 20232429 2025-2026-1 《网络与系统攻防技术》实验六实验报告

    1.实验内容 (1)前期渗透 (2)Vsftpd源码包后门漏洞(21端口) (3)SambaMS-RPC Shell命令注入漏洞(端口139) (4)Java RMI SERVER命令执行漏洞(1099端口) (5)PHP CGI参数执行注入漏洞(80端口) 2.实验过程 2.1前期渗透 2.1.1
     2025-2026-1-网络与系统攻防技术(2323/2324)(北京电子科技学院)   20232429马成栋   2025-11-23 11:39    0    10
  • 实验3

    任务1:源代码: 1 #include "window.hpp" 2 #include <iostream> 3 4 void test(){ 5 Window w("Demo"); 6 w.add_button("add"); 7 w.add_button("remove"); 8 w.add_b
     面向对象程序设计(南京信息工程大学)   lei1459   2025-11-23 16:55    1    10
  • 20232325 2025-2026-1 《网络与系统攻防技术》实验六实验报告

    Metasploitable2靶机渗透测试实验报告 1. 实验内容 1.1 前期渗透Metasploitable2靶机,发现靶机并进行端口、漏洞扫描 1.2 Metasploit攻击渗透方法实践 (1)Vsftpd源码包后门漏洞(21端口) (2)SambaMS-RPC Shell命令注入漏洞(端口
     2025-2026-1-网络与系统攻防技术(2323/2324)(北京电子科技学院)   DDD?   2025-11-20 01:44    0    10
  • 高级语言程序设计第五次作业

    学号:102500302 姓名:陈婧妍 设计一个getchar和putchar联合使用的程序,使得程序遇到空格符时结束。 建立一个in.txt和out.txt,分别使用这两个文件进行重定位代替键盘输入和屏幕输出in.txt存放一些字符小写字符,大写字符,数字字符,程序将这些小写字符转换成大写字符,然
     2025高级语言程序设计(福州大学)   102500302   2025-11-17 19:39    0    10
< Prev1···6970717273747576777879···200Next >

Copyright ©2025 Cnblogs, Inc. Powered by .NET Core on Kubernetes. 问题反馈   帮助文档