• 首页
  • 校区
  • 班级
  • 博文
  • 评论
  • 作业
总阅读排行 | 周阅读排行 | 零回复 | 有回复 | 作业博文 | 其他博文 | 所有博文
零回复 | 有回复 | 作业 | 其他 | 所有
  • work7

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号:102500331 姓名:余武 1.定义一个二维数组和
     2025高级语言程序设计(福州大学)   在天上飞的余   2025-12-01 16:38    0    7
  • 高级语言程序设计课程第七次个人作业

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业的要求在:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号:102500326 姓名:罗炜 1 2 3 4 5 6
     2025高级语言程序设计(福州大学)   小夜仆   2025-11-25 19:02    0    7
  • 高级语言程序设计课程第七次个人作业

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/15587 学号:102500411 姓名:陈鸿彬 一、(1)~(8)
     2025高级语言程序设计(福州大学)   陈鸿彬   2025-11-25 15:30    0    7
  • 实验作业3

    实验三:类和对象基础编程2 实验任务1 代码 task1.cpp #include "window.hpp" #include <iostream> void test(){ Window w("Demo"); w.add_button("add"); w.add_button("remove");
     面向对象程序设计(南京信息工程大学)   NolanNiko   2025-11-26 00:59    1    7
  • 20232417 2025-2026-1 《网络与系统攻防技术》实验七实验报告

    1.实验内容 1.1实验目的 本实践的目标理解常用网络欺诈背后的原理,以提高防范意识,并提出具体防范方法。具体实践有 (1)简单应用SET工具建立冒名网站 (2)ettercap DNS spoof (3)结合应用两种技术,用DNS spoof引导特定访问到冒名网站。 1.2学习内容 (1)学习SE
     2025-2026-1-网络与系统攻防技术(2323/2324)(北京电子科技学院)   20232417皮邓佳   2025-11-26 08:54    0    7
  • 实验三.类和对象

    任务1. button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::string& get_la
     面向对象程序设计(南京信息工程大学)   Suki123   2025-11-25 16:16    1    7
  • 实验三

    实验任务一: 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
     面向对象程序设计(南京信息工程大学)   stezin-   2025-11-25 00:30    2    7
  • 数据采集与融合技术作业3

    作业1 指定一个网站,爬取这个网站中的所有的所有图片,例如中国气象网(http://www.weather.com.cn)。实现单线程和多线程的方式爬取。 核心代码 单线程: 点击查看代码 def crawl_page(self, url): """爬取单个页面""" if url in self.
     2025数据采集与融合技术实践(福州大学 - 福州大学计算机与大数据学院)   xiaofennnn   2025-11-25 01:54    0    7
  • 实验3

    1.实验任务1 button.hpp源码 点击查看代码 #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::st
     面向对象程序设计(南京信息工程大学)   陈晨aaa   2025-11-25 23:54    1    7
  • 实验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
     面向对象程序设计(南京信息工程大学)   五树   2025-11-25 22:35    1    7
  • 20232315 2025-2026-1 《网络与系统攻防技术》实验六实验报告

    20232315 2025-2026-1 《网络与系统攻防技术》实验六实验报告 目录 一、实验基本信息 二、实验内容及要求 三、实验过程 3.1 前期渗透 3.2 漏洞利用 四、问题及解决方案 五、实验感想 一、实验基本信息 实验环境:Kali Linux虚拟机 + VMware Workstati
     2025-2026-1-网络与系统攻防技术(2323/2324)(北京电子科技学院)   易娴   2025-11-23 21:31    0    7
  • 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    7
  • 实验三

    任务1: 源代码: button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::string& g
     面向对象程序设计(南京信息工程大学)   不吃虾仁饭   2025-11-23 15:55    1    7
  • 实验3

    实验3 实验结论: 实验任务1: 源码: button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std
     面向对象程序设计(南京信息工程大学)   .Maring   2025-11-22 15:47    1    7
  • 高级语言程序设计课程第六次个人作业

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14585 学号:102500323 姓名:黄铭昊 (1)设计一个按值传
     2025高级语言程序设计(福州大学)   破碎的心~   2025-11-19 14:58    0    7
  • 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
     面向对象程序设计(南京信息工程大学)   FF-10086   2025-11-22 20:55    1    7
  • 高级语言程序设计第六次个人作业

    高级语言程序设计第六次个人作业 作业课程:2025高级语言程序设计(福州大学) 作业要求:高级语言程序设计第六次个人作业 学号:052406103 姓名:叶银珍 作业内容 设计一个按值传递和按地址传递呈现不同效果的程序。 #include<stdio.h> void change1(int a,in
     2025高级语言程序设计(福州大学)   叶银珍   2025-11-23 15:25    0    7
  • 实验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
     面向对象程序设计(南京信息工程大学)   鱼籽不煮粥   2025-11-25 22:37    1    7
  • 高级语言程序设计课程第六次个人作业

    这个作业属于:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业的要求:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14585 学号:102500420 姓名:连骁晗 (1)设计一个按值传递和按地址传
     2025高级语言程序设计(福州大学)   芸芸芸芸?   2025-11-21 20:59    0    7
  • 实验3

    任务1 button.hpp #pragma once #include <iostream> #include <string> class Button { public: Button(const std::string &label_); const std::string& get_lab
     面向对象程序设计(南京信息工程大学)   14dw   2025-11-25 23:31    1    7
< Prev1···90919293949596979899100···200Next >

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