• 首页
  • 校区
  • 班级
  • 博文
  • 评论
  • 作业
总阅读排行 | 周阅读排行 | 零回复 | 有回复 | 作业博文 | 其他博文 | 所有博文
零回复 | 有回复 | 作业 | 其他 | 所有
  • 实验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
     面向对象程序设计(南京信息工程大学)   王宝炜   2025-11-23 20:45    1    11
  • NUIST_LAB03

    🧪 实验报告 一、实验名称 实验2 类和对象_基础编程2 二、实验目的 理解类的组合机制(has-a),能熟练用 C++ 定义与使用组合类 理解深复制与浅复制的区别 灵活运用标准库(array、vector、string、迭代器、算法库等)解决实际问题 面向具体问题,运用面向对象思维设计类(自定义
     面向对象程序设计(南京信息工程大学)   witlethe   2025-11-21 17:11    1    11
  • 数据采集作业3

    第三次作业 一、作业内容 作业①: 要求:指定一个网站,爬取这个网站中的所有的所有图片,例如:中国气象网(http://www.weather.com.cn)。实现单线程和多线程的方式爬取。 –务必控制总页数(学号尾数2位)、总下载的图片数量(尾数后3位)等限制爬取的措施。 输出信息: 将下载的Ur
     2025数据采集与融合技术实践(福州大学 - 福州大学计算机与大数据学院)   yeeopuuo   2025-11-22 13:58    0    11
  • oop实验三

    实验任务一 源代码: #include "window.hpp" #include <iostream> void test(){ Window w("Demo"); w.add_button("add"); w.add_button("remove"); w.add_button("modify"
     面向对象程序设计(南京信息工程大学)   周心岚   2025-11-22 13:43    1    11
  • 20232405 2025-2026-1 《网络与系统攻防技术》实验六实验报告

    1. 实验内容 (1)学会使用metasploit,并学会对靶机进行主机发现、端口扫描、漏洞扫描等操作 (2)学会利用Vsftpd源码包后门漏洞(21端口) (3)学会利用SambaMS-RPC Shell命令注入漏洞(端口139) (4)学会利用Java RMI SERVER命令执行漏洞(1099
     2025-2026-1-网络与系统攻防技术(2323/2324)(北京电子科技学院)   20232405高一鸣   2025-11-21 22:16    0    11
  • 高级语言程序设计课程第三次个人作业

    班级连接:https://edu.cnblogs.com/campus/fzu/gjyycx 作业链接:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13574 学号:102500422 姓名:陈进和 编写并运行书本第4章4.8编程练习题目中的
     2025高级语言程序设计(福州大学)   NJJz   2025-11-04 01:34    0    11
  • 高级语言程序设计课程第六次个人作业

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14585 学号:102300120 姓名:覃俊源 一.编写代码 (1)
     2025高级语言程序设计(福州大学)   功夫格斗广告费   2025-11-24 17:50    0    11
  • 20232403 2025-2026-1 《网络与系统攻防技术》实验六实验报告

    1.实验内容 主要内容:使用ARP扫描和nmap进行主机发现与端口扫描、Vsftpd后门漏洞获得root权限、Samba命令注入漏洞获取系统访问、Java RMI反序列化漏洞建立Meterpreter会话、PHP CGI参数注入漏洞。 掌握Metasploit命令:use命令选择合适模块、set命令
     2025-2026-1-网络与系统攻防技术(2323/2324)(北京电子科技学院)   20232403   2025-11-23 21:40    0    11
  • 作业3

    数据采集与融合技术作业3 实验一 (1)实验过程 要求: 指定一个网站,爬取这个网站中的所有的所有图片,例如:中国气象网(http://www.weather.com.cn)。实现单线程和多线程的方式爬取。 –务必控制总页数(学号尾数2位)、总下载的图片数量(尾数后3位)等限制爬取的措施。 核心代码
     2025数据采集与融合技术实践(福州大学 - 福州大学计算机与大数据学院)   ooozyz   2025-11-25 20:05    0    11
  • 高级语言程序设计课程第七次个人作业

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号:<102500409> 姓名:<周康琳> (1)定义一
     2025高级语言程序设计(福州大学)   Jocelyn_0807   2025-11-25 15:12    0    11
  • 实验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    11
  • 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
     面向对象程序设计(南京信息工程大学)   安宁的空白   2025-11-25 19:53    1    11
  • 实验6

    实验任务1: contestant.hpp: #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // 姓
     面向对象程序设计(南京信息工程大学)   fuilk   2025-12-21 15:05    1    11
  • 实验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
     面向对象程序设计(南京信息工程大学)   知之为吃吃   2025-12-19 20:58    1    11
  • 实验6

    任务1: 源代码: contestant.hpp #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; //
     面向对象程序设计(南京信息工程大学)   不吃虾仁饭   2025-12-17 22:46    1    11
  • 实验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
     面向对象程序设计(南京信息工程大学)   鱼籽不煮粥   2025-12-19 21:32    1    11
  • 实验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
     面向对象程序设计(南京信息工程大学)   陈志立   2025-11-25 17:27    1    11
  • 实验6 文件I/O与异常处理

    实验任务1 源代码: #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string name; // 姓名 std::strin
     面向对象程序设计(南京信息工程大学)   溯溪而上   2025-12-17 15:57    1    11
  • Test6

    任务一 源代码 contestant.hpp 点我展开代码 #pragma once #include <iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string nam
     面向对象程序设计(南京信息工程大学)   董建标   2025-12-17 09:34    1    11
  • 实验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
     程序设计基础(南京信息工程大学)   W12341   2025-12-11 20:05    1    11
< Prev1···5152535455565758596061···200Next >

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